roda-component 0.0.10 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gems +3 -0
- data/.gitignore +2 -1
- data/.ruby-version +1 -1
- data/Gemfile +13 -0
- data/Makefile +18 -23
- data/Rakefile +0 -1
- data/lib/roda/component.rb +98 -44
- data/lib/roda/component/dom.rb +27 -17
- data/lib/roda/component/events.rb +58 -19
- data/lib/roda/component/faye.rb +131 -34
- data/lib/roda/component/form.rb +64 -0
- data/lib/roda/component/form/validations.rb +204 -0
- data/lib/roda/component/version.rb +1 -1
- data/lib/roda/plugins/component.rb +54 -24
- data/roda-component.gemspec +17 -7
- data/test/component_test.rb +20 -5
- data/test/dummy/.bowerrc +3 -0
- data/test/dummy/.sass-cache/00f9c07200bf85fc7effbdcbe3ee44551cdb2ce5/login.scssc +0 -0
- data/test/dummy/app.rb +99 -9
- data/test/dummy/bower.json +21 -0
- data/test/dummy/components/chat.rb +50 -0
- data/test/dummy/components/forms/login.rb +20 -0
- data/test/dummy/components/layout.rb +22 -2
- data/test/dummy/components/login.rb +123 -0
- data/test/dummy/components/theme.rb +89 -0
- data/test/dummy/config.ru +18 -0
- data/test/dummy/constants.rb +3 -0
- data/test/dummy/dummy.db +0 -0
- data/test/dummy/models/user.rb +20 -0
- data/test/dummy/public/AdminLTE-master/.gitignore +2 -0
- data/test/dummy/public/AdminLTE-master/LICENSE +20 -0
- data/test/dummy/public/AdminLTE-master/README.md +104 -0
- data/test/dummy/public/AdminLTE-master/ajax/dashboard-boxrefresh-demo.php +64 -0
- data/test/dummy/public/AdminLTE-master/composer.json +24 -0
- data/test/dummy/public/AdminLTE-master/css/AdminLTE.css +3539 -0
- data/test/dummy/public/AdminLTE-master/css/bootstrap-slider/slider.css +169 -0
- data/test/dummy/public/AdminLTE-master/css/bootstrap-wysihtml5/bootstrap3-wysihtml5.css +102 -0
- data/test/dummy/public/AdminLTE-master/css/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css +3 -0
- data/test/dummy/public/AdminLTE-master/css/colorpicker/bootstrap-colorpicker.css +214 -0
- data/test/dummy/public/AdminLTE-master/css/colorpicker/bootstrap-colorpicker.min.css +9 -0
- data/test/dummy/public/AdminLTE-master/css/datatables/dataTables.bootstrap.css +223 -0
- data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_asc.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_asc_disabled.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_both.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_desc.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/datatables/images/sort_desc_disabled.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/datepicker/datepicker3.css +790 -0
- data/test/dummy/public/AdminLTE-master/css/daterangepicker/daterangepicker-bs3.css +245 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/all.css +61 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/_all.css +560 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/aero.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/aero.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/aero@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/blue.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/blue.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/blue@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/flat.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/flat.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/flat@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/green.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/green.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/green@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/grey.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/grey.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/grey@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/orange.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/orange.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/orange@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/pink.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/pink.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/pink@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/purple.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/purple.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/purple@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/red.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/red.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/red@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/yellow.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/yellow.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/flat/yellow@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/futurico/futurico.css +56 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/futurico/futurico.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/futurico/futurico@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/_all.css +740 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/aero.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/blue.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/green.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/grey.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/line.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/line.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/line@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/orange.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/pink.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/purple.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/red.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/line/yellow.css +74 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/_all.css +557 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/aero.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/aero.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/aero@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/blue.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/blue.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/blue@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/green.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/green.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/green@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/grey.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/grey.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/grey@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/minimal.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/minimal.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/minimal@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/orange.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/orange.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/orange@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/pink.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/pink.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/pink@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/purple.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/purple.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/purple@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/red.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/red.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/red@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/yellow.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/yellow.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/minimal/yellow@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/polaris/polaris.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/polaris/polaris.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/polaris/polaris@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/_all.css +620 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/aero.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/aero.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/aero@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/blue.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/blue.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/blue@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/green.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/green.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/green@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/grey.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/grey.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/grey@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/orange.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/orange.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/orange@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/pink.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/pink.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/pink@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/purple.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/purple.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/purple@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/red.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/red.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/red@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/square.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/square.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/square@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/yellow.css +62 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/yellow.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/iCheck/square/yellow@2x.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/animated-overlay.gif +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_217bc0_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_469bdd_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_6da8d5_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/images/ui-icons_f9bd01_256x240.png +0 -0
- data/test/dummy/public/AdminLTE-master/css/ionslider/ion.rangeSlider.css +126 -0
- data/test/dummy/public/AdminLTE-master/css/ionslider/ion.rangeSlider.skinFlat.css +89 -0
- data/test/dummy/public/AdminLTE-master/css/ionslider/ion.rangeSlider.skinNice.css +85 -0
- data/test/dummy/public/AdminLTE-master/css/jvectormap/jquery-jvectormap-1.2.2.css +36 -0
- data/test/dummy/public/AdminLTE-master/css/morris/morris.css +2 -0
- data/test/dummy/public/AdminLTE-master/css/timepicker/bootstrap-timepicker.css +121 -0
- data/test/dummy/public/AdminLTE-master/css/timepicker/bootstrap-timepicker.min.css +10 -0
- data/test/dummy/public/AdminLTE-master/empty.html +417 -0
- data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.svg +229 -0
- data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy/public/AdminLTE-master/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy/public/AdminLTE-master/img/ajax-loader.gif +0 -0
- data/test/dummy/public/AdminLTE-master/img/ajax-loader1.gif +0 -0
- data/test/dummy/public/AdminLTE-master/img/avatar.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/avatar04.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/avatar2.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/avatar3.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/avatar5.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/blur-background04.jpg +0 -0
- data/test/dummy/public/AdminLTE-master/img/blur-background08.jpg +0 -0
- data/test/dummy/public/AdminLTE-master/img/blur-background09.jpg +0 -0
- data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/alpha-horizontal.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/alpha.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/hue-horizontal.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/hue.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/bootstrap-colorpicker/saturation.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/american-express.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/cirrus.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/mastercard.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/mestro.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/paypal.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/paypal2.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/credit/visa.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/icons.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/sprite-skin-flat.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/sprite-skin-nice.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/user-bg.png +0 -0
- data/test/dummy/public/AdminLTE-master/img/user.jpg +0 -0
- data/test/dummy/public/AdminLTE-master/img/user2.jpg +0 -0
- data/test/dummy/public/AdminLTE-master/index.html +900 -0
- data/test/dummy/public/AdminLTE-master/js/AdminLTE/app.js +1054 -0
- data/test/dummy/public/AdminLTE-master/js/AdminLTE/dashboard.js +252 -0
- data/test/dummy/public/AdminLTE-master/js/AdminLTE/demo.js +81 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/bootstrap-slider/bootstrap-slider.js +1167 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js +6 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.js +350 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/colorpicker/bootstrap-colorpicker.js +949 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/colorpicker/bootstrap-colorpicker.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datatables/dataTables.bootstrap.js +250 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datatables/jquery.dataTables.js +12099 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/bootstrap-datepicker.js +1671 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ar.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.az.js +12 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.bg.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ca.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.cs.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.cy.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.da.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.de.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.el.js +13 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.es.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.et.js +18 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.fa.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.fi.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.fr.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.gl.js +11 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.he.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.hr.js +13 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.hu.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.id.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.is.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.it.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ja.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ka.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.kk.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.kr.js +13 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.lt.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.lv.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.mk.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ms.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.nb.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.nl.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.no.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.pl.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.pt.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ro.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.rs.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ru.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sk.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sl.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sq.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sv.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.sw.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.th.js +14 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.tr.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.ua.js +15 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.vi.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js +17 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/daterangepicker/daterangepicker.js +883 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/excanvas.js +1428 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/excanvas.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.colorhelpers.js +180 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.colorhelpers.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.canvas.js +345 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.canvas.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.categories.js +190 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.categories.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.crosshair.js +176 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.crosshair.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.errorbars.js +353 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.errorbars.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.fillbetween.js +226 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.fillbetween.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.image.js +241 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.image.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.js +3137 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.min.js +2 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.navigate.js +346 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.navigate.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.pie.js +817 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.pie.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.resize.js +60 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.resize.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.selection.js +360 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.selection.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.stack.js +188 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.stack.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.symbol.js +71 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.symbol.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.threshold.js +142 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.threshold.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.time.js +431 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/flot/jquery.flot.time.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/iCheck/icheck.js +506 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/iCheck/icheck.min.js +10 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.date.extensions.js +488 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.extensions.js +122 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.js +1632 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.numeric.extensions.js +177 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.phone.extensions.js +50 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/jquery.inputmask.regex.extensions.js +170 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/phone-codes/phone-be.json +45 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/phone-codes/phone-codes.json +294 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/input-mask/phone-codes/readme.txt +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/ionslider/ion.rangeSlider.min.js +22 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/jqueryKnob/jquery.knob.js +764 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js +8 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/jvectormap/jquery-jvectormap-world-mill-en.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/misc/html5shiv.js +8 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/misc/jquery.ba-resize.min.js +9 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/misc/jquery.placeholder.js +187 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/misc/modernizr.min.js +4 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/misc/respond.min.js +1 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/morris/morris.js +1888 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/morris/morris.min.js +2 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/slimScroll/jquery.slimscroll.js +464 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/slimScroll/jquery.slimscroll.min.js +16 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/slimScroll/slimScroll.jquery.json +30 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/sparkline/jquery.sparkline.js +3054 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/sparkline/jquery.sparkline.min.js +5 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/timepicker/bootstrap-timepicker.js +903 -0
- data/test/dummy/public/AdminLTE-master/js/plugins/timepicker/bootstrap-timepicker.min.js +5 -0
- data/test/dummy/public/AdminLTE-master/less/404_500_errors.less +38 -0
- data/test/dummy/public/AdminLTE-master/less/AdminLTE.less +49 -0
- data/test/dummy/public/AdminLTE-master/less/alerts.less +25 -0
- data/test/dummy/public/AdminLTE-master/less/bootstrap-social.less +167 -0
- data/test/dummy/public/AdminLTE-master/less/boxes.less +396 -0
- data/test/dummy/public/AdminLTE-master/less/buttons.less +179 -0
- data/test/dummy/public/AdminLTE-master/less/callout.less +49 -0
- data/test/dummy/public/AdminLTE-master/less/core.less +422 -0
- data/test/dummy/public/AdminLTE-master/less/dropdown.less +392 -0
- data/test/dummy/public/AdminLTE-master/less/forms.less +73 -0
- data/test/dummy/public/AdminLTE-master/less/header.less +191 -0
- data/test/dummy/public/AdminLTE-master/less/iCheck.less +70 -0
- data/test/dummy/public/AdminLTE-master/less/invoice.less +38 -0
- data/test/dummy/public/AdminLTE-master/less/lockscreen.less +86 -0
- data/test/dummy/public/AdminLTE-master/less/login_and_register.less +42 -0
- data/test/dummy/public/AdminLTE-master/less/mailbox.less +64 -0
- data/test/dummy/public/AdminLTE-master/less/mixins.less +166 -0
- data/test/dummy/public/AdminLTE-master/less/navs.less +161 -0
- data/test/dummy/public/AdminLTE-master/less/pace.less +17 -0
- data/test/dummy/public/AdminLTE-master/less/progress-bars.less +62 -0
- data/test/dummy/public/AdminLTE-master/less/sidebar.less +135 -0
- data/test/dummy/public/AdminLTE-master/less/skins.less +232 -0
- data/test/dummy/public/AdminLTE-master/less/small-box.less +122 -0
- data/test/dummy/public/AdminLTE-master/less/timeline.less +101 -0
- data/test/dummy/public/AdminLTE-master/less/vars.less +64 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/buttons.html +1270 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/empty.html +415 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/general.html +985 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/icons.html +2176 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/jquery-ui.html +539 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/sliders.html +562 -0
- data/test/dummy/public/AdminLTE-master/pages/UI/timeline.html +564 -0
- data/test/dummy/public/AdminLTE-master/pages/calendar.html +643 -0
- data/test/dummy/public/AdminLTE-master/pages/charts/empty.html +415 -0
- data/test/dummy/public/AdminLTE-master/pages/charts/flot.html +763 -0
- data/test/dummy/public/AdminLTE-master/pages/charts/inline.html +888 -0
- data/test/dummy/public/AdminLTE-master/pages/charts/morris.html +554 -0
- data/test/dummy/public/AdminLTE-master/pages/empty.html +445 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/404.html +433 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/500.html +433 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/blank.html +416 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/invoice.html +553 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/lockscreen.html +114 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/login.html +58 -0
- data/test/dummy/public/AdminLTE-master/pages/examples/register.html +60 -0
- data/test/dummy/public/AdminLTE-master/pages/forms/advanced.html +742 -0
- data/test/dummy/public/AdminLTE-master/pages/forms/editors.html +472 -0
- data/test/dummy/public/AdminLTE-master/pages/forms/empty.html +415 -0
- data/test/dummy/public/AdminLTE-master/pages/forms/general.html +714 -0
- data/test/dummy/public/AdminLTE-master/pages/mailbox.html +671 -0
- data/test/dummy/public/AdminLTE-master/pages/tables/data.html +1304 -0
- data/test/dummy/public/AdminLTE-master/pages/tables/empty.html +414 -0
- data/test/dummy/public/AdminLTE-master/pages/tables/simple.html +716 -0
- data/test/dummy/public/AdminLTE-master/pages/widgets.html +1028 -0
- data/test/dummy/public/chat/bower/font-awesome/.bower.json +37 -0
- data/test/dummy/public/chat/bower/font-awesome/.gitignore +32 -0
- data/test/dummy/public/chat/bower/font-awesome/.npmignore +42 -0
- data/test/dummy/public/chat/bower/font-awesome/bower.json +23 -0
- data/test/dummy/public/chat/bower/font-awesome/css/font-awesome.css +1672 -0
- data/test/dummy/public/chat/bower/font-awesome/css/font-awesome.min.css +4 -0
- data/test/dummy/public/chat/bower/font-awesome/fonts/FontAwesome.otf +0 -0
- data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.svg +520 -0
- data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/test/dummy/public/chat/bower/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/test/dummy/public/chat/bower/font-awesome/less/bordered-pulled.less +16 -0
- data/test/dummy/public/chat/bower/font-awesome/less/core.less +11 -0
- data/test/dummy/public/chat/bower/font-awesome/less/extras.less +2 -0
- data/test/dummy/public/chat/bower/font-awesome/less/fixed-width.less +6 -0
- data/test/dummy/public/chat/bower/font-awesome/less/font-awesome.less +17 -0
- data/test/dummy/public/chat/bower/font-awesome/less/icons.less +552 -0
- data/test/dummy/public/chat/bower/font-awesome/less/larger.less +13 -0
- data/test/dummy/public/chat/bower/font-awesome/less/list.less +19 -0
- data/test/dummy/public/chat/bower/font-awesome/less/mixins.less +25 -0
- data/test/dummy/public/chat/bower/font-awesome/less/path.less +14 -0
- data/test/dummy/public/chat/bower/font-awesome/less/rotated-flipped.less +20 -0
- data/test/dummy/public/chat/bower/font-awesome/less/spinning.less +29 -0
- data/test/dummy/public/chat/bower/font-awesome/less/stacked.less +20 -0
- data/test/dummy/public/chat/bower/font-awesome/less/variables.less +561 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_bordered-pulled.scss +16 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_core.scss +11 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_extras.scss +44 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_fixed-width.scss +6 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_icons.scss +552 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_larger.scss +13 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_list.scss +19 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_mixins.scss +25 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_path.scss +14 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_rotated-flipped.scss +20 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_spinning.scss +29 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_stacked.scss +20 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/_variables.scss +561 -0
- data/test/dummy/public/chat/bower/font-awesome/scss/font-awesome.scss +17 -0
- data/test/dummy/public/chat/bower/jScrollPane/.bower.json +33 -0
- data/test/dummy/public/chat/bower/jScrollPane/.gitignore +2 -0
- data/test/dummy/public/chat/bower/jScrollPane/.gitmodules +3 -0
- data/test/dummy/public/chat/bower/jScrollPane/GPL-LICENSE.txt +278 -0
- data/test/dummy/public/chat/bower/jScrollPane/MIT-LICENSE.txt +19 -0
- data/test/dummy/public/chat/bower/jScrollPane/README.md +23 -0
- data/test/dummy/public/chat/bower/jScrollPane/ajax.html +151 -0
- data/test/dummy/public/chat/bower/jScrollPane/ajax_content.html +73 -0
- data/test/dummy/public/chat/bower/jScrollPane/anchors.html +140 -0
- data/test/dummy/public/chat/bower/jScrollPane/api.html +190 -0
- data/test/dummy/public/chat/bower/jScrollPane/arrow_hover.html +208 -0
- data/test/dummy/public/chat/bower/jScrollPane/arrow_positions.html +634 -0
- data/test/dummy/public/chat/bower/jScrollPane/arrows.html +203 -0
- data/test/dummy/public/chat/bower/jScrollPane/auto_reinitialise.html +98 -0
- data/test/dummy/public/chat/bower/jScrollPane/basic.html +204 -0
- data/test/dummy/public/chat/bower/jScrollPane/bower.json +22 -0
- data/test/dummy/public/chat/bower/jScrollPane/build/.gitignore +1 -0
- data/test/dummy/public/chat/bower/jScrollPane/build/Gruntfile.js +49 -0
- data/test/dummy/public/chat/bower/jScrollPane/build/package.json +30 -0
- data/test/dummy/public/chat/bower/jScrollPane/caps.html +236 -0
- data/test/dummy/public/chat/bower/jScrollPane/changelog.html +66 -0
- data/test/dummy/public/chat/bower/jScrollPane/destroy.html +237 -0
- data/test/dummy/public/chat/bower/jScrollPane/drag_size.html +206 -0
- data/test/dummy/public/chat/bower/jScrollPane/dynamic_content.html +95 -0
- data/test/dummy/public/chat/bower/jScrollPane/dynamic_height.html +207 -0
- data/test/dummy/public/chat/bower/jScrollPane/dynamic_width.html +368 -0
- data/test/dummy/public/chat/bower/jScrollPane/events.html +264 -0
- data/test/dummy/public/chat/bower/jScrollPane/faqs.html +52 -0
- data/test/dummy/public/chat/bower/jScrollPane/fixed_width.html +230 -0
- data/test/dummy/public/chat/bower/jScrollPane/focus.html +207 -0
- data/test/dummy/public/chat/bower/jScrollPane/fullpage_scroll.html +259 -0
- data/test/dummy/public/chat/bower/jScrollPane/iframe.html +79 -0
- data/test/dummy/public/chat/bower/jScrollPane/iframe2.html +121 -0
- data/test/dummy/public/chat/bower/jScrollPane/iframe_content1.html +143 -0
- data/test/dummy/public/chat/bower/jScrollPane/iframe_content2.html +143 -0
- data/test/dummy/public/chat/bower/jScrollPane/iframe_content3.html +76 -0
- data/test/dummy/public/chat/bower/jScrollPane/iframe_content4.html +76 -0
- data/test/dummy/public/chat/bower/jScrollPane/image.html +96 -0
- data/test/dummy/public/chat/bower/jScrollPane/image/logo.png +0 -0
- data/test/dummy/public/chat/bower/jScrollPane/image2.html +98 -0
- data/test/dummy/public/chat/bower/jScrollPane/index.html +319 -0
- data/test/dummy/public/chat/bower/jScrollPane/invisibles.html +523 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/after.html +45 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/before.html +45 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/brs_main.css +301 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/index.html +53 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/jquery.mousewheel.js +79 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/jscrollpane-2b3.css +143 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/jscrollpane-2b3.js +1063 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/11/native.html +42 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/after.html +80 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/after_reinit.html +73 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/before.html +72 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/before_reinit.html +73 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/brs_main.css +301 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/index.html +53 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/jquery.mousewheel.js +79 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/jscrollpane-2b3.css +143 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/jscrollpane-2b3.js +1063 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/native.html +69 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/12/wrapped.html +87 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/7/after.html +190 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/7/before.html +190 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/7/index.html +53 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/7/jscrollpane-2b1.css +120 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/7/jscrollpane-2b2.js +947 -0
- data/test/dummy/public/chat/bower/jScrollPane/issues/7/native.html +171 -0
- data/test/dummy/public/chat/bower/jScrollPane/known_issues.html +62 -0
- data/test/dummy/public/chat/bower/jScrollPane/less_basic.html +164 -0
- data/test/dummy/public/chat/bower/jScrollPane/mwheel_intent.html +209 -0
- data/test/dummy/public/chat/bower/jScrollPane/override_animate.html +215 -0
- data/test/dummy/public/chat/bower/jScrollPane/runeimp.html +314 -0
- data/test/dummy/public/chat/bower/jScrollPane/runeimp2.html +320 -0
- data/test/dummy/public/chat/bower/jScrollPane/script/demo.js +49 -0
- data/test/dummy/public/chat/bower/jScrollPane/script/jquery.jscrollpane.js +1467 -0
- data/test/dummy/public/chat/bower/jScrollPane/script/jquery.jscrollpane.min.js +11 -0
- data/test/dummy/public/chat/bower/jScrollPane/script/jquery.mousewheel.js +202 -0
- data/test/dummy/public/chat/bower/jScrollPane/script/mwheelIntent.js +76 -0
- data/test/dummy/public/chat/bower/jScrollPane/scroll_on_left.html +132 -0
- data/test/dummy/public/chat/bower/jScrollPane/scroll_to.html +188 -0
- data/test/dummy/public/chat/bower/jScrollPane/scroll_to_animate.html +197 -0
- data/test/dummy/public/chat/bower/jScrollPane/settings.html +202 -0
- data/test/dummy/public/chat/bower/jScrollPane/short.html +82 -0
- data/test/dummy/public/chat/bower/jScrollPane/style/demo.css +227 -0
- data/test/dummy/public/chat/bower/jScrollPane/style/jquery.jscrollpane.css +115 -0
- data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/image/ui-icons_222222_256x240.png +0 -0
- data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/image/ui-icons_888888_256x240.png +0 -0
- data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/image/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/index.html +337 -0
- data/test/dummy/public/chat/bower/jScrollPane/themes/lozenge/style/jquery.jscrollpane.lozenge.css +78 -0
- data/test/dummy/public/chat/bower/jScrollPane/v1.html +49 -0
- data/test/dummy/public/chat/bower/jquery/.bower.json +37 -0
- data/test/dummy/public/chat/bower/jquery/MIT-LICENSE.txt +21 -0
- data/test/dummy/public/chat/bower/jquery/bower.json +27 -0
- data/test/dummy/public/chat/bower/jquery/dist/jquery.js +9205 -0
- data/test/dummy/public/chat/bower/jquery/dist/jquery.min.js +5 -0
- data/test/dummy/public/chat/bower/jquery/dist/jquery.min.map +1 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax.js +786 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/jsonp.js +89 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/load.js +75 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/parseJSON.js +13 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/parseXML.js +28 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/script.js +64 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/var/nonce.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/var/rquery.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/ajax/xhr.js +136 -0
- data/test/dummy/public/chat/bower/jquery/src/attributes.js +11 -0
- data/test/dummy/public/chat/bower/jquery/src/attributes/attr.js +141 -0
- data/test/dummy/public/chat/bower/jquery/src/attributes/classes.js +158 -0
- data/test/dummy/public/chat/bower/jquery/src/attributes/prop.js +94 -0
- data/test/dummy/public/chat/bower/jquery/src/attributes/support.js +35 -0
- data/test/dummy/public/chat/bower/jquery/src/attributes/val.js +161 -0
- data/test/dummy/public/chat/bower/jquery/src/callbacks.js +205 -0
- data/test/dummy/public/chat/bower/jquery/src/core.js +497 -0
- data/test/dummy/public/chat/bower/jquery/src/core/access.js +60 -0
- data/test/dummy/public/chat/bower/jquery/src/core/init.js +123 -0
- data/test/dummy/public/chat/bower/jquery/src/core/parseHTML.js +39 -0
- data/test/dummy/public/chat/bower/jquery/src/core/ready.js +97 -0
- data/test/dummy/public/chat/bower/jquery/src/core/var/rsingleTag.js +4 -0
- data/test/dummy/public/chat/bower/jquery/src/css.js +450 -0
- data/test/dummy/public/chat/bower/jquery/src/css/addGetHookIf.js +22 -0
- data/test/dummy/public/chat/bower/jquery/src/css/curCSS.js +57 -0
- data/test/dummy/public/chat/bower/jquery/src/css/defaultDisplay.js +70 -0
- data/test/dummy/public/chat/bower/jquery/src/css/hiddenVisibleSelectors.js +15 -0
- data/test/dummy/public/chat/bower/jquery/src/css/support.js +96 -0
- data/test/dummy/public/chat/bower/jquery/src/css/swap.js +28 -0
- data/test/dummy/public/chat/bower/jquery/src/css/var/cssExpand.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/css/var/getStyles.js +12 -0
- data/test/dummy/public/chat/bower/jquery/src/css/var/isHidden.js +13 -0
- data/test/dummy/public/chat/bower/jquery/src/css/var/rmargin.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/css/var/rnumnonpx.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/data.js +178 -0
- data/test/dummy/public/chat/bower/jquery/src/data/Data.js +181 -0
- data/test/dummy/public/chat/bower/jquery/src/data/accepts.js +20 -0
- data/test/dummy/public/chat/bower/jquery/src/data/var/data_priv.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/data/var/data_user.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/deferred.js +149 -0
- data/test/dummy/public/chat/bower/jquery/src/deprecated.js +13 -0
- data/test/dummy/public/chat/bower/jquery/src/dimensions.js +50 -0
- data/test/dummy/public/chat/bower/jquery/src/effects.js +648 -0
- data/test/dummy/public/chat/bower/jquery/src/effects/Tween.js +114 -0
- data/test/dummy/public/chat/bower/jquery/src/effects/animatedSelector.js +13 -0
- data/test/dummy/public/chat/bower/jquery/src/event.js +868 -0
- data/test/dummy/public/chat/bower/jquery/src/event/ajax.js +13 -0
- data/test/dummy/public/chat/bower/jquery/src/event/alias.js +39 -0
- data/test/dummy/public/chat/bower/jquery/src/event/support.js +9 -0
- data/test/dummy/public/chat/bower/jquery/src/exports/amd.js +24 -0
- data/test/dummy/public/chat/bower/jquery/src/exports/global.js +32 -0
- data/test/dummy/public/chat/bower/jquery/src/intro.js +44 -0
- data/test/dummy/public/chat/bower/jquery/src/jquery.js +37 -0
- data/test/dummy/public/chat/bower/jquery/src/manipulation.js +580 -0
- data/test/dummy/public/chat/bower/jquery/src/manipulation/_evalUrl.js +18 -0
- data/test/dummy/public/chat/bower/jquery/src/manipulation/support.js +32 -0
- data/test/dummy/public/chat/bower/jquery/src/manipulation/var/rcheckableType.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/offset.js +207 -0
- data/test/dummy/public/chat/bower/jquery/src/outro.js +1 -0
- data/test/dummy/public/chat/bower/jquery/src/queue.js +142 -0
- data/test/dummy/public/chat/bower/jquery/src/queue/delay.js +22 -0
- data/test/dummy/public/chat/bower/jquery/src/selector-native.js +172 -0
- data/test/dummy/public/chat/bower/jquery/src/selector-sizzle.js +14 -0
- data/test/dummy/public/chat/bower/jquery/src/selector.js +1 -0
- data/test/dummy/public/chat/bower/jquery/src/serialize.js +111 -0
- data/test/dummy/public/chat/bower/jquery/src/sizzle/dist/sizzle.js +2067 -0
- data/test/dummy/public/chat/bower/jquery/src/sizzle/dist/sizzle.min.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/sizzle/dist/sizzle.min.map +1 -0
- data/test/dummy/public/chat/bower/jquery/src/traversing.js +199 -0
- data/test/dummy/public/chat/bower/jquery/src/traversing/findFilter.js +100 -0
- data/test/dummy/public/chat/bower/jquery/src/traversing/var/rneedsContext.js +6 -0
- data/test/dummy/public/chat/bower/jquery/src/var/arr.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/var/class2type.js +4 -0
- data/test/dummy/public/chat/bower/jquery/src/var/concat.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/var/hasOwn.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/var/indexOf.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/var/pnum.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/var/push.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/var/rnotwhite.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/var/slice.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/var/strundefined.js +3 -0
- data/test/dummy/public/chat/bower/jquery/src/var/support.js +4 -0
- data/test/dummy/public/chat/bower/jquery/src/var/toString.js +5 -0
- data/test/dummy/public/chat/bower/jquery/src/wrap.js +79 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/.bower.json +32 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/README.md +17 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/bower.json +22 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Bold/OpenSans-Bold.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Italic/OpenSans-Italic.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Light/OpenSans-Light.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Regular/OpenSans-Regular.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.svg +958 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.ttf +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.woff +0 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/index.html +85 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/open-sans.css +90 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/open-sans.less +133 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/open-sans.scss +12 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/package.json +22 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Bold.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_BoldItalic.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_ExtraBold.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_ExtraBoldItalic.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Italic.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Light.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_LightItalic.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Regular.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_Semibold.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_SemiboldItalic.scss +8 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_mixins.scss +7 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/_variables.scss +2 -0
- data/test/dummy/public/chat/bower/open-sans-fontface/sass/open-sans.scss +12 -0
- data/test/dummy/public/chat/css/login.css +140 -0
- data/test/dummy/public/chat/css/login.scss +147 -0
- data/test/dummy/public/chat/css/style.css +397 -0
- data/test/dummy/public/chat/index.html +211 -0
- data/test/dummy/public/chat/js/index.js +6 -0
- data/test/dummy/public/chat/login.html +36 -0
- data/test/helper.rb +11 -53
- metadata +1501 -31
- data/lib/roda/component/models/channel.rb +0 -11
- data/lib/roda/component/models/user.rb +0 -12
- data/lib/roda/component/ohm.rb +0 -8
- data/test/dummy/public/index.html +0 -8
@@ -0,0 +1,17 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3
|
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4
|
+
*/
|
5
|
+
|
6
|
+
@import "variables";
|
7
|
+
@import "mixins";
|
8
|
+
@import "path";
|
9
|
+
@import "core";
|
10
|
+
@import "larger";
|
11
|
+
@import "fixed-width";
|
12
|
+
@import "list";
|
13
|
+
@import "bordered-pulled";
|
14
|
+
@import "spinning";
|
15
|
+
@import "rotated-flipped";
|
16
|
+
@import "stacked";
|
17
|
+
@import "icons";
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"name": "jScrollPane",
|
3
|
+
"version": "2.0.20",
|
4
|
+
"license": [
|
5
|
+
"MIT",
|
6
|
+
"GPL-2.0"
|
7
|
+
],
|
8
|
+
"main": [
|
9
|
+
"./script/jquery.mousewheel.js",
|
10
|
+
"./script/mwheelIntent.js",
|
11
|
+
"./script/jquery.jscrollpane.js",
|
12
|
+
"./script/jquery.jscrollpane.min.js",
|
13
|
+
"./style/jquery.jscrollpane.css"
|
14
|
+
],
|
15
|
+
"dependencies": {
|
16
|
+
"jquery": "latest"
|
17
|
+
},
|
18
|
+
"repository": {
|
19
|
+
"type": "git",
|
20
|
+
"url": "git://github.com/vitch/jScrollPane.git"
|
21
|
+
},
|
22
|
+
"homepage": "https://github.com/vitch/jScrollPane",
|
23
|
+
"_release": "2.0.20",
|
24
|
+
"_resolution": {
|
25
|
+
"type": "version",
|
26
|
+
"tag": "v2.0.20",
|
27
|
+
"commit": "926e4f22fb845fd203a61d22c1930690cca28aa4"
|
28
|
+
},
|
29
|
+
"_source": "git://github.com/vitch/jScrollPane.git",
|
30
|
+
"_target": "~2.0.20",
|
31
|
+
"_originalSource": "jScrollPane",
|
32
|
+
"_direct": true
|
33
|
+
}
|
@@ -0,0 +1,278 @@
|
|
1
|
+
GNU GENERAL PUBLIC LICENSE
|
2
|
+
Version 2, June 1991
|
3
|
+
|
4
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
5
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6
|
+
Everyone is permitted to copy and distribute verbatim copies
|
7
|
+
of this license document, but changing it is not allowed.
|
8
|
+
|
9
|
+
Preamble
|
10
|
+
|
11
|
+
The licenses for most software are designed to take away your
|
12
|
+
freedom to share and change it. By contrast, the GNU General Public
|
13
|
+
License is intended to guarantee your freedom to share and change free
|
14
|
+
software--to make sure the software is free for all its users. This
|
15
|
+
General Public License applies to most of the Free Software
|
16
|
+
Foundation's software and to any other program whose authors commit to
|
17
|
+
using it. (Some other Free Software Foundation software is covered by
|
18
|
+
the GNU Lesser General Public License instead.) You can apply it to
|
19
|
+
your programs, too.
|
20
|
+
|
21
|
+
When we speak of free software, we are referring to freedom, not
|
22
|
+
price. Our General Public Licenses are designed to make sure that you
|
23
|
+
have the freedom to distribute copies of free software (and charge for
|
24
|
+
this service if you wish), that you receive source code or can get it
|
25
|
+
if you want it, that you can change the software or use pieces of it
|
26
|
+
in new free programs; and that you know you can do these things.
|
27
|
+
|
28
|
+
To protect your rights, we need to make restrictions that forbid
|
29
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
30
|
+
These restrictions translate to certain responsibilities for you if you
|
31
|
+
distribute copies of the software, or if you modify it.
|
32
|
+
|
33
|
+
For example, if you distribute copies of such a program, whether
|
34
|
+
gratis or for a fee, you must give the recipients all the rights that
|
35
|
+
you have. You must make sure that they, too, receive or can get the
|
36
|
+
source code. And you must show them these terms so they know their
|
37
|
+
rights.
|
38
|
+
|
39
|
+
We protect your rights with two steps: (1) copyright the software, and
|
40
|
+
(2) offer you this license which gives you legal permission to copy,
|
41
|
+
distribute and/or modify the software.
|
42
|
+
|
43
|
+
Also, for each author's protection and ours, we want to make certain
|
44
|
+
that everyone understands that there is no warranty for this free
|
45
|
+
software. If the software is modified by someone else and passed on, we
|
46
|
+
want its recipients to know that what they have is not the original, so
|
47
|
+
that any problems introduced by others will not reflect on the original
|
48
|
+
authors' reputations.
|
49
|
+
|
50
|
+
Finally, any free program is threatened constantly by software
|
51
|
+
patents. We wish to avoid the danger that redistributors of a free
|
52
|
+
program will individually obtain patent licenses, in effect making the
|
53
|
+
program proprietary. To prevent this, we have made it clear that any
|
54
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
55
|
+
|
56
|
+
The precise terms and conditions for copying, distribution and
|
57
|
+
modification follow.
|
58
|
+
|
59
|
+
GNU GENERAL PUBLIC LICENSE
|
60
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61
|
+
|
62
|
+
0. This License applies to any program or other work which contains
|
63
|
+
a notice placed by the copyright holder saying it may be distributed
|
64
|
+
under the terms of this General Public License. The "Program", below,
|
65
|
+
refers to any such program or work, and a "work based on the Program"
|
66
|
+
means either the Program or any derivative work under copyright law:
|
67
|
+
that is to say, a work containing the Program or a portion of it,
|
68
|
+
either verbatim or with modifications and/or translated into another
|
69
|
+
language. (Hereinafter, translation is included without limitation in
|
70
|
+
the term "modification".) Each licensee is addressed as "you".
|
71
|
+
|
72
|
+
Activities other than copying, distribution and modification are not
|
73
|
+
covered by this License; they are outside its scope. The act of
|
74
|
+
running the Program is not restricted, and the output from the Program
|
75
|
+
is covered only if its contents constitute a work based on the
|
76
|
+
Program (independent of having been made by running the Program).
|
77
|
+
Whether that is true depends on what the Program does.
|
78
|
+
|
79
|
+
1. You may copy and distribute verbatim copies of the Program's
|
80
|
+
source code as you receive it, in any medium, provided that you
|
81
|
+
conspicuously and appropriately publish on each copy an appropriate
|
82
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
83
|
+
notices that refer to this License and to the absence of any warranty;
|
84
|
+
and give any other recipients of the Program a copy of this License
|
85
|
+
along with the Program.
|
86
|
+
|
87
|
+
You may charge a fee for the physical act of transferring a copy, and
|
88
|
+
you may at your option offer warranty protection in exchange for a fee.
|
89
|
+
|
90
|
+
2. You may modify your copy or copies of the Program or any portion
|
91
|
+
of it, thus forming a work based on the Program, and copy and
|
92
|
+
distribute such modifications or work under the terms of Section 1
|
93
|
+
above, provided that you also meet all of these conditions:
|
94
|
+
|
95
|
+
a) You must cause the modified files to carry prominent notices
|
96
|
+
stating that you changed the files and the date of any change.
|
97
|
+
|
98
|
+
b) You must cause any work that you distribute or publish, that in
|
99
|
+
whole or in part contains or is derived from the Program or any
|
100
|
+
part thereof, to be licensed as a whole at no charge to all third
|
101
|
+
parties under the terms of this License.
|
102
|
+
|
103
|
+
c) If the modified program normally reads commands interactively
|
104
|
+
when run, you must cause it, when started running for such
|
105
|
+
interactive use in the most ordinary way, to print or display an
|
106
|
+
announcement including an appropriate copyright notice and a
|
107
|
+
notice that there is no warranty (or else, saying that you provide
|
108
|
+
a warranty) and that users may redistribute the program under
|
109
|
+
these conditions, and telling the user how to view a copy of this
|
110
|
+
License. (Exception: if the Program itself is interactive but
|
111
|
+
does not normally print such an announcement, your work based on
|
112
|
+
the Program is not required to print an announcement.)
|
113
|
+
|
114
|
+
These requirements apply to the modified work as a whole. If
|
115
|
+
identifiable sections of that work are not derived from the Program,
|
116
|
+
and can be reasonably considered independent and separate works in
|
117
|
+
themselves, then this License, and its terms, do not apply to those
|
118
|
+
sections when you distribute them as separate works. But when you
|
119
|
+
distribute the same sections as part of a whole which is a work based
|
120
|
+
on the Program, the distribution of the whole must be on the terms of
|
121
|
+
this License, whose permissions for other licensees extend to the
|
122
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
123
|
+
|
124
|
+
Thus, it is not the intent of this section to claim rights or contest
|
125
|
+
your rights to work written entirely by you; rather, the intent is to
|
126
|
+
exercise the right to control the distribution of derivative or
|
127
|
+
collective works based on the Program.
|
128
|
+
|
129
|
+
In addition, mere aggregation of another work not based on the Program
|
130
|
+
with the Program (or with a work based on the Program) on a volume of
|
131
|
+
a storage or distribution medium does not bring the other work under
|
132
|
+
the scope of this License.
|
133
|
+
|
134
|
+
3. You may copy and distribute the Program (or a work based on it,
|
135
|
+
under Section 2) in object code or executable form under the terms of
|
136
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
137
|
+
|
138
|
+
a) Accompany it with the complete corresponding machine-readable
|
139
|
+
source code, which must be distributed under the terms of Sections
|
140
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
141
|
+
|
142
|
+
b) Accompany it with a written offer, valid for at least three
|
143
|
+
years, to give any third party, for a charge no more than your
|
144
|
+
cost of physically performing source distribution, a complete
|
145
|
+
machine-readable copy of the corresponding source code, to be
|
146
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
147
|
+
customarily used for software interchange; or,
|
148
|
+
|
149
|
+
c) Accompany it with the information you received as to the offer
|
150
|
+
to distribute corresponding source code. (This alternative is
|
151
|
+
allowed only for noncommercial distribution and only if you
|
152
|
+
received the program in object code or executable form with such
|
153
|
+
an offer, in accord with Subsection b above.)
|
154
|
+
|
155
|
+
The source code for a work means the preferred form of the work for
|
156
|
+
making modifications to it. For an executable work, complete source
|
157
|
+
code means all the source code for all modules it contains, plus any
|
158
|
+
associated interface definition files, plus the scripts used to
|
159
|
+
control compilation and installation of the executable. However, as a
|
160
|
+
special exception, the source code distributed need not include
|
161
|
+
anything that is normally distributed (in either source or binary
|
162
|
+
form) with the major components (compiler, kernel, and so on) of the
|
163
|
+
operating system on which the executable runs, unless that component
|
164
|
+
itself accompanies the executable.
|
165
|
+
|
166
|
+
If distribution of executable or object code is made by offering
|
167
|
+
access to copy from a designated place, then offering equivalent
|
168
|
+
access to copy the source code from the same place counts as
|
169
|
+
distribution of the source code, even though third parties are not
|
170
|
+
compelled to copy the source along with the object code.
|
171
|
+
|
172
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
173
|
+
except as expressly provided under this License. Any attempt
|
174
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
175
|
+
void, and will automatically terminate your rights under this License.
|
176
|
+
However, parties who have received copies, or rights, from you under
|
177
|
+
this License will not have their licenses terminated so long as such
|
178
|
+
parties remain in full compliance.
|
179
|
+
|
180
|
+
5. You are not required to accept this License, since you have not
|
181
|
+
signed it. However, nothing else grants you permission to modify or
|
182
|
+
distribute the Program or its derivative works. These actions are
|
183
|
+
prohibited by law if you do not accept this License. Therefore, by
|
184
|
+
modifying or distributing the Program (or any work based on the
|
185
|
+
Program), you indicate your acceptance of this License to do so, and
|
186
|
+
all its terms and conditions for copying, distributing or modifying
|
187
|
+
the Program or works based on it.
|
188
|
+
|
189
|
+
6. Each time you redistribute the Program (or any work based on the
|
190
|
+
Program), the recipient automatically receives a license from the
|
191
|
+
original licensor to copy, distribute or modify the Program subject to
|
192
|
+
these terms and conditions. You may not impose any further
|
193
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
194
|
+
You are not responsible for enforcing compliance by third parties to
|
195
|
+
this License.
|
196
|
+
|
197
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
198
|
+
infringement or for any other reason (not limited to patent issues),
|
199
|
+
conditions are imposed on you (whether by court order, agreement or
|
200
|
+
otherwise) that contradict the conditions of this License, they do not
|
201
|
+
excuse you from the conditions of this License. If you cannot
|
202
|
+
distribute so as to satisfy simultaneously your obligations under this
|
203
|
+
License and any other pertinent obligations, then as a consequence you
|
204
|
+
may not distribute the Program at all. For example, if a patent
|
205
|
+
license would not permit royalty-free redistribution of the Program by
|
206
|
+
all those who receive copies directly or indirectly through you, then
|
207
|
+
the only way you could satisfy both it and this License would be to
|
208
|
+
refrain entirely from distribution of the Program.
|
209
|
+
|
210
|
+
If any portion of this section is held invalid or unenforceable under
|
211
|
+
any particular circumstance, the balance of the section is intended to
|
212
|
+
apply and the section as a whole is intended to apply in other
|
213
|
+
circumstances.
|
214
|
+
|
215
|
+
It is not the purpose of this section to induce you to infringe any
|
216
|
+
patents or other property right claims or to contest validity of any
|
217
|
+
such claims; this section has the sole purpose of protecting the
|
218
|
+
integrity of the free software distribution system, which is
|
219
|
+
implemented by public license practices. Many people have made
|
220
|
+
generous contributions to the wide range of software distributed
|
221
|
+
through that system in reliance on consistent application of that
|
222
|
+
system; it is up to the author/donor to decide if he or she is willing
|
223
|
+
to distribute software through any other system and a licensee cannot
|
224
|
+
impose that choice.
|
225
|
+
|
226
|
+
This section is intended to make thoroughly clear what is believed to
|
227
|
+
be a consequence of the rest of this License.
|
228
|
+
|
229
|
+
8. If the distribution and/or use of the Program is restricted in
|
230
|
+
certain countries either by patents or by copyrighted interfaces, the
|
231
|
+
original copyright holder who places the Program under this License
|
232
|
+
may add an explicit geographical distribution limitation excluding
|
233
|
+
those countries, so that distribution is permitted only in or among
|
234
|
+
countries not thus excluded. In such case, this License incorporates
|
235
|
+
the limitation as if written in the body of this License.
|
236
|
+
|
237
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
238
|
+
of the General Public License from time to time. Such new versions will
|
239
|
+
be similar in spirit to the present version, but may differ in detail to
|
240
|
+
address new problems or concerns.
|
241
|
+
|
242
|
+
Each version is given a distinguishing version number. If the Program
|
243
|
+
specifies a version number of this License which applies to it and "any
|
244
|
+
later version", you have the option of following the terms and conditions
|
245
|
+
either of that version or of any later version published by the Free
|
246
|
+
Software Foundation. If the Program does not specify a version number of
|
247
|
+
this License, you may choose any version ever published by the Free Software
|
248
|
+
Foundation.
|
249
|
+
|
250
|
+
10. If you wish to incorporate parts of the Program into other free
|
251
|
+
programs whose distribution conditions are different, write to the author
|
252
|
+
to ask for permission. For software which is copyrighted by the Free
|
253
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
254
|
+
make exceptions for this. Our decision will be guided by the two goals
|
255
|
+
of preserving the free status of all derivatives of our free software and
|
256
|
+
of promoting the sharing and reuse of software generally.
|
257
|
+
|
258
|
+
NO WARRANTY
|
259
|
+
|
260
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
261
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
262
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
263
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
264
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
265
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
266
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
267
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
268
|
+
REPAIR OR CORRECTION.
|
269
|
+
|
270
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
271
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
272
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
273
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
274
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
275
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
276
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
277
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
278
|
+
POSSIBILITY OF SUCH DAMAGES.
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2010 Kelvin Luck
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE
|
@@ -0,0 +1,23 @@
|
|
1
|
+
#jScrollPane - cross browser custom scrollbars
|
2
|
+
|
3
|
+
jScrollPane is a [jQuery](http://www.jquery.com/) plugin which allows you to replace a browser's default scrollbars (on an element which has **overflow: auto**) with a HTML structure that can be easily skinned using CSS.
|
4
|
+
|
5
|
+
To see a bunch of examples of jScrollPane in action please visit the [jScrollPane website](http://jscrollpane.kelvinluck.com/). All of the code for the website is available from this repository so please feel free to download and use it!
|
6
|
+
|
7
|
+
##Contributing
|
8
|
+
|
9
|
+
There is a simple [grunt](http://gruntjs.com) based build script which will help to produce a minified version of
|
10
|
+
jScrollPane if you make any modifications and want to submit a pull request. You can find it in the `build/` directory.
|
11
|
+
|
12
|
+
To use it first make sure you have [node](http://nodejs.org/), npm and the `grunt-cli` module installed:
|
13
|
+
|
14
|
+
`npm install -g grunt-cli`
|
15
|
+
|
16
|
+
Then:
|
17
|
+
|
18
|
+
```
|
19
|
+
cd build
|
20
|
+
grunt
|
21
|
+
```
|
22
|
+
|
23
|
+
Please remember to update the changelog in the comment at the header of both JS files when submitting a pull request.
|
@@ -0,0 +1,151 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/html4/loose.dtd">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
|
6
|
+
<title>jScrollPane - ajax demo page</title>
|
7
|
+
|
8
|
+
<!-- styles specific to demo site -->
|
9
|
+
<link type="text/css" href="style/demo.css" rel="stylesheet" media="all" />
|
10
|
+
<!-- styles needed by jScrollPane - include in your own sites -->
|
11
|
+
<link type="text/css" href="style/jquery.jscrollpane.css" rel="stylesheet" media="all" />
|
12
|
+
|
13
|
+
<style type="text/css" id="page-css">
|
14
|
+
/* Styles specific to this particular page */
|
15
|
+
.scroll-pane
|
16
|
+
{
|
17
|
+
width: 100%;
|
18
|
+
height: 200px;
|
19
|
+
overflow: auto;
|
20
|
+
}
|
21
|
+
</style>
|
22
|
+
|
23
|
+
<!-- latest jQuery direct from google's CDN -->
|
24
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
25
|
+
<!-- the mousewheel plugin -->
|
26
|
+
<script type="text/javascript" src="script/jquery.mousewheel.js"></script>
|
27
|
+
<!-- the jScrollPane script -->
|
28
|
+
<script type="text/javascript" src="script/jquery.jscrollpane.min.js"></script>
|
29
|
+
<!-- scripts specific to this demo site -->
|
30
|
+
<script type="text/javascript" src="script/demo.js"></script>
|
31
|
+
|
32
|
+
<script type="text/javascript" id="sourcecode">
|
33
|
+
$(function()
|
34
|
+
{
|
35
|
+
var api = $('.scroll-pane').jScrollPane(
|
36
|
+
{
|
37
|
+
showArrows:true,
|
38
|
+
maintainPosition: false
|
39
|
+
}
|
40
|
+
).data('jsp');
|
41
|
+
|
42
|
+
$('#do-ajax').bind(
|
43
|
+
'click',
|
44
|
+
function()
|
45
|
+
{
|
46
|
+
api.getContentPane().load(
|
47
|
+
'ajax_content.html',
|
48
|
+
function()
|
49
|
+
{
|
50
|
+
api.reinitialise();
|
51
|
+
}
|
52
|
+
);
|
53
|
+
return false;
|
54
|
+
}
|
55
|
+
);
|
56
|
+
});
|
57
|
+
</script>
|
58
|
+
</head>
|
59
|
+
<body>
|
60
|
+
<div id="top-nav">
|
61
|
+
<img src="image/logo.png" width="196" height="69" alt="jScrollPane">
|
62
|
+
<ul>
|
63
|
+
<li><a href="index.html">Home</a></li>
|
64
|
+
<li><a href="index.html#examples">Examples</a></li>
|
65
|
+
<li><a href="index.html#themes">Themes</a></li>
|
66
|
+
<li><a href="index.html#usage">How to use</a></li>
|
67
|
+
<li><a href="faqs.html">FAQs</a></li>
|
68
|
+
<li><a href="known_issues.html">Known issues</a></li>
|
69
|
+
<li><a href="index.html#support">Support</a></li>
|
70
|
+
<li><a href="index.html#download">Download</a></li>
|
71
|
+
</ul>
|
72
|
+
</div>
|
73
|
+
<div id="container">
|
74
|
+
<h1>jScrollPane - ajax demo page</h1>
|
75
|
+
<p>
|
76
|
+
This demonstration shows how you can use ajax to dynamically load content into your jScrollPane. Because of
|
77
|
+
the way jScrollPane works you need to use the <a href="api.html#getContentPane">getContentPane</a> API method
|
78
|
+
to get the element which you are adding content to and then <a href="api.html#reinitialise">reinitialise</a>
|
79
|
+
the scrollpane once you have changed the content. As the <a href="settings.html#maintainPosition">maintainPosition
|
80
|
+
</a> setting is true by default then the position of the scrollpane is maintained even if we are scrolling
|
81
|
+
while the update happens.
|
82
|
+
</p>
|
83
|
+
<p>
|
84
|
+
You can <a href="#" id="do-ajax">click here</a> to load some content into the scrollpane below using ajax.
|
85
|
+
</p>
|
86
|
+
<div class="scroll-pane">
|
87
|
+
<p>
|
88
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices
|
89
|
+
eget id neque. Duis enim turpis, tempus at accumsan vitae, lobortis id sapien. Pellentesque nec orci
|
90
|
+
mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis
|
91
|
+
consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies
|
92
|
+
bibendum. Vivamus diam leo, faucibus et vehicula eu, molestie sit amet dui. Proin nec orci et elit
|
93
|
+
semper ultrices. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus
|
94
|
+
mus. Sed quis urna mi, ac dignissim mauris. Quisque mollis ornare mauris, sed laoreet diam malesuada
|
95
|
+
quis. Proin vel elementum ante. Donec hendrerit arcu ac odio tincidunt posuere. Vestibulum nec risus
|
96
|
+
eu lacus semper viverra.
|
97
|
+
</p>
|
98
|
+
<p>
|
99
|
+
Vestibulum dictum consectetur magna eu egestas. Praesent molestie dapibus erat, sit amet sodales
|
100
|
+
lectus congue ut. Nam adipiscing, tortor ac blandit egestas, lorem ligula posuere ipsum, nec
|
101
|
+
faucibus nisl enim eu purus. Quisque bibendum diam quis nunc eleifend at molestie libero tincidunt.
|
102
|
+
Quisque tincidunt sapien a sapien pellentesque consequat. Mauris adipiscing venenatis augue ut
|
103
|
+
tempor. Donec auctor mattis quam quis aliquam. Nullam ultrices erat in dolor pharetra bibendum.
|
104
|
+
Suspendisse eget odio ut libero imperdiet rhoncus. Curabitur aliquet, ipsum sit amet aliquet varius,
|
105
|
+
est urna ullamcorper magna, sed eleifend libero nunc non erat. Vivamus semper turpis ac turpis
|
106
|
+
volutpat non cursus velit aliquam. Fusce id tortor id sapien porta egestas. Nulla venenatis luctus
|
107
|
+
libero et suscipit. Sed sed purus risus. Donec auctor, leo nec eleifend vehicula, lacus felis
|
108
|
+
sollicitudin est, vitae lacinia lectus urna nec libero. Aliquam pellentesque, arcu condimentum
|
109
|
+
pharetra vestibulum, lectus felis malesuada felis, vel fringilla dolor dui tempus nisi. In hac
|
110
|
+
habitasse platea dictumst. Ut imperdiet mauris vitae eros varius eget accumsan lectus adipiscing.
|
111
|
+
</p>
|
112
|
+
<p>
|
113
|
+
Quisque et massa leo, sit amet adipiscing nisi. Mauris vel condimentum dolor. Duis quis ullamcorper
|
114
|
+
eros. Proin metus dui, facilisis id bibendum sed, aliquet non ipsum. Aenean pulvinar risus eu nisi
|
115
|
+
dictum eleifend. Maecenas mattis dolor eget lectus pretium eget molestie libero auctor. Praesent sit
|
116
|
+
amet tellus sed nibh convallis semper. Curabitur nisl odio, feugiat non dapibus sed, tincidunt ut
|
117
|
+
est. Nullam erat velit, suscipit aliquet commodo sit amet, mollis in mauris. Curabitur pharetra
|
118
|
+
dictum interdum. In posuere pretium ultricies. Curabitur volutpat eros vehicula quam ultrices
|
119
|
+
varius. Proin volutpat enim a massa tempor ornare. Sed ullamcorper fermentum nisl, ac hendrerit sem
|
120
|
+
feugiat ac. Donec porttitor ullamcorper quam. Morbi pretium adipiscing quam, quis bibendum diam
|
121
|
+
congue eget. Sed at lectus at est malesuada iaculis. Sed fermentum quam dui. Donec eget ipsum dolor,
|
122
|
+
id mollis nisi. Donec fermentum vehicula porta.
|
123
|
+
</p>
|
124
|
+
<p>
|
125
|
+
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
|
126
|
+
Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero
|
127
|
+
sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
|
128
|
+
Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed,
|
129
|
+
commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros
|
130
|
+
ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis.
|
131
|
+
Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna
|
132
|
+
eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis
|
133
|
+
luctus, metus
|
134
|
+
</p>
|
135
|
+
<p>
|
136
|
+
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
|
137
|
+
Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit
|
138
|
+
amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
|
139
|
+
</p>
|
140
|
+
</div>
|
141
|
+
<h2>Page javascript</h2>
|
142
|
+
<div id="sourcecode-display">
|
143
|
+
<p>The contents of this div will be replaced by the javascript added to this page</p>
|
144
|
+
</div>
|
145
|
+
<h2>Page CSS</h2>
|
146
|
+
<div id="css-display">
|
147
|
+
<p>The contents of this div will be replaced by the CSS added to this page</p>
|
148
|
+
</div>
|
149
|
+
</div>
|
150
|
+
</body>
|
151
|
+
</html>
|