killbill-assets-ui 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +5 -0
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/javascripts/application.js +13 -0
- data/app/assets/javascripts/assets/bootstrap.js +2377 -0
- data/app/assets/javascripts/assets/common.js +10 -0
- data/app/assets/javascripts/assets/jquery-ui.min.js +6 -0
- data/app/assets/javascripts/assets/jquery.spin.js +76 -0
- data/app/assets/javascripts/assets/jquery_datatables.js +15711 -0
- data/app/assets/javascripts/assets/spin.js +76 -0
- data/app/assets/stylesheets/application.css +15 -0
- data/app/assets/stylesheets/assets/bootstrap.css +6757 -0
- data/app/assets/stylesheets/assets/bootstrap_and_overrides.css +9 -0
- data/app/assets/stylesheets/assets/common.css +8 -0
- data/app/assets/stylesheets/assets/datatable.css +71 -0
- data/app/assets/stylesheets/assets/element.css +548 -0
- data/app/assets/stylesheets/assets/jquery-ui.min.css +7 -0
- data/app/assets/stylesheets/assets/jquery_datatables.css +658 -0
- data/lib/assets/engine.rb +10 -0
- data/lib/assets/version.rb +5 -0
- data/lib/killbill-assets-ui.rb +4 -0
- data/lib/tasks/killbill/assets/ui_tasks.rake +5 -0
- metadata +126 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into including all the files listed below.
|
2
|
+
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
|
3
|
+
// be included in the compiled file accessible from http://example.com/assets/application.js
|
4
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
5
|
+
// the compiled file.
|
6
|
+
//
|
7
|
+
//= require jquery
|
8
|
+
//= require jquery_ujs
|
9
|
+
//= require bootstrap-datepicker
|
10
|
+
//= require_tree .
|