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,181 @@
|
|
1
|
+
define([
|
2
|
+
"../core",
|
3
|
+
"../var/rnotwhite",
|
4
|
+
"./accepts"
|
5
|
+
], function( jQuery, rnotwhite ) {
|
6
|
+
|
7
|
+
function Data() {
|
8
|
+
// Support: Android<4,
|
9
|
+
// Old WebKit does not have Object.preventExtensions/freeze method,
|
10
|
+
// return new empty object instead with no [[set]] accessor
|
11
|
+
Object.defineProperty( this.cache = {}, 0, {
|
12
|
+
get: function() {
|
13
|
+
return {};
|
14
|
+
}
|
15
|
+
});
|
16
|
+
|
17
|
+
this.expando = jQuery.expando + Data.uid++;
|
18
|
+
}
|
19
|
+
|
20
|
+
Data.uid = 1;
|
21
|
+
Data.accepts = jQuery.acceptData;
|
22
|
+
|
23
|
+
Data.prototype = {
|
24
|
+
key: function( owner ) {
|
25
|
+
// We can accept data for non-element nodes in modern browsers,
|
26
|
+
// but we should not, see #8335.
|
27
|
+
// Always return the key for a frozen object.
|
28
|
+
if ( !Data.accepts( owner ) ) {
|
29
|
+
return 0;
|
30
|
+
}
|
31
|
+
|
32
|
+
var descriptor = {},
|
33
|
+
// Check if the owner object already has a cache key
|
34
|
+
unlock = owner[ this.expando ];
|
35
|
+
|
36
|
+
// If not, create one
|
37
|
+
if ( !unlock ) {
|
38
|
+
unlock = Data.uid++;
|
39
|
+
|
40
|
+
// Secure it in a non-enumerable, non-writable property
|
41
|
+
try {
|
42
|
+
descriptor[ this.expando ] = { value: unlock };
|
43
|
+
Object.defineProperties( owner, descriptor );
|
44
|
+
|
45
|
+
// Support: Android<4
|
46
|
+
// Fallback to a less secure definition
|
47
|
+
} catch ( e ) {
|
48
|
+
descriptor[ this.expando ] = unlock;
|
49
|
+
jQuery.extend( owner, descriptor );
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// Ensure the cache object
|
54
|
+
if ( !this.cache[ unlock ] ) {
|
55
|
+
this.cache[ unlock ] = {};
|
56
|
+
}
|
57
|
+
|
58
|
+
return unlock;
|
59
|
+
},
|
60
|
+
set: function( owner, data, value ) {
|
61
|
+
var prop,
|
62
|
+
// There may be an unlock assigned to this node,
|
63
|
+
// if there is no entry for this "owner", create one inline
|
64
|
+
// and set the unlock as though an owner entry had always existed
|
65
|
+
unlock = this.key( owner ),
|
66
|
+
cache = this.cache[ unlock ];
|
67
|
+
|
68
|
+
// Handle: [ owner, key, value ] args
|
69
|
+
if ( typeof data === "string" ) {
|
70
|
+
cache[ data ] = value;
|
71
|
+
|
72
|
+
// Handle: [ owner, { properties } ] args
|
73
|
+
} else {
|
74
|
+
// Fresh assignments by object are shallow copied
|
75
|
+
if ( jQuery.isEmptyObject( cache ) ) {
|
76
|
+
jQuery.extend( this.cache[ unlock ], data );
|
77
|
+
// Otherwise, copy the properties one-by-one to the cache object
|
78
|
+
} else {
|
79
|
+
for ( prop in data ) {
|
80
|
+
cache[ prop ] = data[ prop ];
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
return cache;
|
85
|
+
},
|
86
|
+
get: function( owner, key ) {
|
87
|
+
// Either a valid cache is found, or will be created.
|
88
|
+
// New caches will be created and the unlock returned,
|
89
|
+
// allowing direct access to the newly created
|
90
|
+
// empty data object. A valid owner object must be provided.
|
91
|
+
var cache = this.cache[ this.key( owner ) ];
|
92
|
+
|
93
|
+
return key === undefined ?
|
94
|
+
cache : cache[ key ];
|
95
|
+
},
|
96
|
+
access: function( owner, key, value ) {
|
97
|
+
var stored;
|
98
|
+
// In cases where either:
|
99
|
+
//
|
100
|
+
// 1. No key was specified
|
101
|
+
// 2. A string key was specified, but no value provided
|
102
|
+
//
|
103
|
+
// Take the "read" path and allow the get method to determine
|
104
|
+
// which value to return, respectively either:
|
105
|
+
//
|
106
|
+
// 1. The entire cache object
|
107
|
+
// 2. The data stored at the key
|
108
|
+
//
|
109
|
+
if ( key === undefined ||
|
110
|
+
((key && typeof key === "string") && value === undefined) ) {
|
111
|
+
|
112
|
+
stored = this.get( owner, key );
|
113
|
+
|
114
|
+
return stored !== undefined ?
|
115
|
+
stored : this.get( owner, jQuery.camelCase(key) );
|
116
|
+
}
|
117
|
+
|
118
|
+
// [*]When the key is not a string, or both a key and value
|
119
|
+
// are specified, set or extend (existing objects) with either:
|
120
|
+
//
|
121
|
+
// 1. An object of properties
|
122
|
+
// 2. A key and value
|
123
|
+
//
|
124
|
+
this.set( owner, key, value );
|
125
|
+
|
126
|
+
// Since the "set" path can have two possible entry points
|
127
|
+
// return the expected data based on which path was taken[*]
|
128
|
+
return value !== undefined ? value : key;
|
129
|
+
},
|
130
|
+
remove: function( owner, key ) {
|
131
|
+
var i, name, camel,
|
132
|
+
unlock = this.key( owner ),
|
133
|
+
cache = this.cache[ unlock ];
|
134
|
+
|
135
|
+
if ( key === undefined ) {
|
136
|
+
this.cache[ unlock ] = {};
|
137
|
+
|
138
|
+
} else {
|
139
|
+
// Support array or space separated string of keys
|
140
|
+
if ( jQuery.isArray( key ) ) {
|
141
|
+
// If "name" is an array of keys...
|
142
|
+
// When data is initially created, via ("key", "val") signature,
|
143
|
+
// keys will be converted to camelCase.
|
144
|
+
// Since there is no way to tell _how_ a key was added, remove
|
145
|
+
// both plain key and camelCase key. #12786
|
146
|
+
// This will only penalize the array argument path.
|
147
|
+
name = key.concat( key.map( jQuery.camelCase ) );
|
148
|
+
} else {
|
149
|
+
camel = jQuery.camelCase( key );
|
150
|
+
// Try the string as a key before any manipulation
|
151
|
+
if ( key in cache ) {
|
152
|
+
name = [ key, camel ];
|
153
|
+
} else {
|
154
|
+
// If a key with the spaces exists, use it.
|
155
|
+
// Otherwise, create an array by matching non-whitespace
|
156
|
+
name = camel;
|
157
|
+
name = name in cache ?
|
158
|
+
[ name ] : ( name.match( rnotwhite ) || [] );
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
162
|
+
i = name.length;
|
163
|
+
while ( i-- ) {
|
164
|
+
delete cache[ name[ i ] ];
|
165
|
+
}
|
166
|
+
}
|
167
|
+
},
|
168
|
+
hasData: function( owner ) {
|
169
|
+
return !jQuery.isEmptyObject(
|
170
|
+
this.cache[ owner[ this.expando ] ] || {}
|
171
|
+
);
|
172
|
+
},
|
173
|
+
discard: function( owner ) {
|
174
|
+
if ( owner[ this.expando ] ) {
|
175
|
+
delete this.cache[ owner[ this.expando ] ];
|
176
|
+
}
|
177
|
+
}
|
178
|
+
};
|
179
|
+
|
180
|
+
return Data;
|
181
|
+
});
|
@@ -0,0 +1,20 @@
|
|
1
|
+
define([
|
2
|
+
"../core"
|
3
|
+
], function( jQuery ) {
|
4
|
+
|
5
|
+
/**
|
6
|
+
* Determines whether an object can have data
|
7
|
+
*/
|
8
|
+
jQuery.acceptData = function( owner ) {
|
9
|
+
// Accepts only:
|
10
|
+
// - Node
|
11
|
+
// - Node.ELEMENT_NODE
|
12
|
+
// - Node.DOCUMENT_NODE
|
13
|
+
// - Object
|
14
|
+
// - Any
|
15
|
+
/* jshint -W018 */
|
16
|
+
return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
|
17
|
+
};
|
18
|
+
|
19
|
+
return jQuery.acceptData;
|
20
|
+
});
|
@@ -0,0 +1,149 @@
|
|
1
|
+
define([
|
2
|
+
"./core",
|
3
|
+
"./var/slice",
|
4
|
+
"./callbacks"
|
5
|
+
], function( jQuery, slice ) {
|
6
|
+
|
7
|
+
jQuery.extend({
|
8
|
+
|
9
|
+
Deferred: function( func ) {
|
10
|
+
var tuples = [
|
11
|
+
// action, add listener, listener list, final state
|
12
|
+
[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
|
13
|
+
[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
|
14
|
+
[ "notify", "progress", jQuery.Callbacks("memory") ]
|
15
|
+
],
|
16
|
+
state = "pending",
|
17
|
+
promise = {
|
18
|
+
state: function() {
|
19
|
+
return state;
|
20
|
+
},
|
21
|
+
always: function() {
|
22
|
+
deferred.done( arguments ).fail( arguments );
|
23
|
+
return this;
|
24
|
+
},
|
25
|
+
then: function( /* fnDone, fnFail, fnProgress */ ) {
|
26
|
+
var fns = arguments;
|
27
|
+
return jQuery.Deferred(function( newDefer ) {
|
28
|
+
jQuery.each( tuples, function( i, tuple ) {
|
29
|
+
var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
|
30
|
+
// deferred[ done | fail | progress ] for forwarding actions to newDefer
|
31
|
+
deferred[ tuple[1] ](function() {
|
32
|
+
var returned = fn && fn.apply( this, arguments );
|
33
|
+
if ( returned && jQuery.isFunction( returned.promise ) ) {
|
34
|
+
returned.promise()
|
35
|
+
.done( newDefer.resolve )
|
36
|
+
.fail( newDefer.reject )
|
37
|
+
.progress( newDefer.notify );
|
38
|
+
} else {
|
39
|
+
newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
|
40
|
+
}
|
41
|
+
});
|
42
|
+
});
|
43
|
+
fns = null;
|
44
|
+
}).promise();
|
45
|
+
},
|
46
|
+
// Get a promise for this deferred
|
47
|
+
// If obj is provided, the promise aspect is added to the object
|
48
|
+
promise: function( obj ) {
|
49
|
+
return obj != null ? jQuery.extend( obj, promise ) : promise;
|
50
|
+
}
|
51
|
+
},
|
52
|
+
deferred = {};
|
53
|
+
|
54
|
+
// Keep pipe for back-compat
|
55
|
+
promise.pipe = promise.then;
|
56
|
+
|
57
|
+
// Add list-specific methods
|
58
|
+
jQuery.each( tuples, function( i, tuple ) {
|
59
|
+
var list = tuple[ 2 ],
|
60
|
+
stateString = tuple[ 3 ];
|
61
|
+
|
62
|
+
// promise[ done | fail | progress ] = list.add
|
63
|
+
promise[ tuple[1] ] = list.add;
|
64
|
+
|
65
|
+
// Handle state
|
66
|
+
if ( stateString ) {
|
67
|
+
list.add(function() {
|
68
|
+
// state = [ resolved | rejected ]
|
69
|
+
state = stateString;
|
70
|
+
|
71
|
+
// [ reject_list | resolve_list ].disable; progress_list.lock
|
72
|
+
}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
|
73
|
+
}
|
74
|
+
|
75
|
+
// deferred[ resolve | reject | notify ]
|
76
|
+
deferred[ tuple[0] ] = function() {
|
77
|
+
deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
|
78
|
+
return this;
|
79
|
+
};
|
80
|
+
deferred[ tuple[0] + "With" ] = list.fireWith;
|
81
|
+
});
|
82
|
+
|
83
|
+
// Make the deferred a promise
|
84
|
+
promise.promise( deferred );
|
85
|
+
|
86
|
+
// Call given func if any
|
87
|
+
if ( func ) {
|
88
|
+
func.call( deferred, deferred );
|
89
|
+
}
|
90
|
+
|
91
|
+
// All done!
|
92
|
+
return deferred;
|
93
|
+
},
|
94
|
+
|
95
|
+
// Deferred helper
|
96
|
+
when: function( subordinate /* , ..., subordinateN */ ) {
|
97
|
+
var i = 0,
|
98
|
+
resolveValues = slice.call( arguments ),
|
99
|
+
length = resolveValues.length,
|
100
|
+
|
101
|
+
// the count of uncompleted subordinates
|
102
|
+
remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
|
103
|
+
|
104
|
+
// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
|
105
|
+
deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
|
106
|
+
|
107
|
+
// Update function for both resolve and progress values
|
108
|
+
updateFunc = function( i, contexts, values ) {
|
109
|
+
return function( value ) {
|
110
|
+
contexts[ i ] = this;
|
111
|
+
values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
|
112
|
+
if ( values === progressValues ) {
|
113
|
+
deferred.notifyWith( contexts, values );
|
114
|
+
} else if ( !( --remaining ) ) {
|
115
|
+
deferred.resolveWith( contexts, values );
|
116
|
+
}
|
117
|
+
};
|
118
|
+
},
|
119
|
+
|
120
|
+
progressValues, progressContexts, resolveContexts;
|
121
|
+
|
122
|
+
// Add listeners to Deferred subordinates; treat others as resolved
|
123
|
+
if ( length > 1 ) {
|
124
|
+
progressValues = new Array( length );
|
125
|
+
progressContexts = new Array( length );
|
126
|
+
resolveContexts = new Array( length );
|
127
|
+
for ( ; i < length; i++ ) {
|
128
|
+
if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
|
129
|
+
resolveValues[ i ].promise()
|
130
|
+
.done( updateFunc( i, resolveContexts, resolveValues ) )
|
131
|
+
.fail( deferred.reject )
|
132
|
+
.progress( updateFunc( i, progressContexts, progressValues ) );
|
133
|
+
} else {
|
134
|
+
--remaining;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
// If we're not waiting on anything, resolve the master
|
140
|
+
if ( !remaining ) {
|
141
|
+
deferred.resolveWith( resolveContexts, resolveValues );
|
142
|
+
}
|
143
|
+
|
144
|
+
return deferred.promise();
|
145
|
+
}
|
146
|
+
});
|
147
|
+
|
148
|
+
return jQuery;
|
149
|
+
});
|
@@ -0,0 +1,50 @@
|
|
1
|
+
define([
|
2
|
+
"./core",
|
3
|
+
"./core/access",
|
4
|
+
"./css"
|
5
|
+
], function( jQuery, access ) {
|
6
|
+
|
7
|
+
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
|
8
|
+
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
9
|
+
jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
|
10
|
+
// Margin is only for outerHeight, outerWidth
|
11
|
+
jQuery.fn[ funcName ] = function( margin, value ) {
|
12
|
+
var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
|
13
|
+
extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
|
14
|
+
|
15
|
+
return access( this, function( elem, type, value ) {
|
16
|
+
var doc;
|
17
|
+
|
18
|
+
if ( jQuery.isWindow( elem ) ) {
|
19
|
+
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
20
|
+
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
21
|
+
// https://github.com/jquery/jquery/pull/764
|
22
|
+
return elem.document.documentElement[ "client" + name ];
|
23
|
+
}
|
24
|
+
|
25
|
+
// Get document width or height
|
26
|
+
if ( elem.nodeType === 9 ) {
|
27
|
+
doc = elem.documentElement;
|
28
|
+
|
29
|
+
// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
|
30
|
+
// whichever is greatest
|
31
|
+
return Math.max(
|
32
|
+
elem.body[ "scroll" + name ], doc[ "scroll" + name ],
|
33
|
+
elem.body[ "offset" + name ], doc[ "offset" + name ],
|
34
|
+
doc[ "client" + name ]
|
35
|
+
);
|
36
|
+
}
|
37
|
+
|
38
|
+
return value === undefined ?
|
39
|
+
// Get width or height on the element, requesting but not forcing parseFloat
|
40
|
+
jQuery.css( elem, type, extra ) :
|
41
|
+
|
42
|
+
// Set width or height on the element
|
43
|
+
jQuery.style( elem, type, value, extra );
|
44
|
+
}, type, chainable ? margin : undefined, chainable, null );
|
45
|
+
};
|
46
|
+
});
|
47
|
+
});
|
48
|
+
|
49
|
+
return jQuery;
|
50
|
+
});
|
@@ -0,0 +1,648 @@
|
|
1
|
+
define([
|
2
|
+
"./core",
|
3
|
+
"./var/pnum",
|
4
|
+
"./css/var/cssExpand",
|
5
|
+
"./css/var/isHidden",
|
6
|
+
"./css/defaultDisplay",
|
7
|
+
"./data/var/data_priv",
|
8
|
+
|
9
|
+
"./core/init",
|
10
|
+
"./effects/Tween",
|
11
|
+
"./queue",
|
12
|
+
"./css",
|
13
|
+
"./deferred",
|
14
|
+
"./traversing"
|
15
|
+
], function( jQuery, pnum, cssExpand, isHidden, defaultDisplay, data_priv ) {
|
16
|
+
|
17
|
+
var
|
18
|
+
fxNow, timerId,
|
19
|
+
rfxtypes = /^(?:toggle|show|hide)$/,
|
20
|
+
rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
|
21
|
+
rrun = /queueHooks$/,
|
22
|
+
animationPrefilters = [ defaultPrefilter ],
|
23
|
+
tweeners = {
|
24
|
+
"*": [ function( prop, value ) {
|
25
|
+
var tween = this.createTween( prop, value ),
|
26
|
+
target = tween.cur(),
|
27
|
+
parts = rfxnum.exec( value ),
|
28
|
+
unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
|
29
|
+
|
30
|
+
// Starting value computation is required for potential unit mismatches
|
31
|
+
start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
|
32
|
+
rfxnum.exec( jQuery.css( tween.elem, prop ) ),
|
33
|
+
scale = 1,
|
34
|
+
maxIterations = 20;
|
35
|
+
|
36
|
+
if ( start && start[ 3 ] !== unit ) {
|
37
|
+
// Trust units reported by jQuery.css
|
38
|
+
unit = unit || start[ 3 ];
|
39
|
+
|
40
|
+
// Make sure we update the tween properties later on
|
41
|
+
parts = parts || [];
|
42
|
+
|
43
|
+
// Iteratively approximate from a nonzero starting point
|
44
|
+
start = +target || 1;
|
45
|
+
|
46
|
+
do {
|
47
|
+
// If previous iteration zeroed out, double until we get *something*.
|
48
|
+
// Use string for doubling so we don't accidentally see scale as unchanged below
|
49
|
+
scale = scale || ".5";
|
50
|
+
|
51
|
+
// Adjust and apply
|
52
|
+
start = start / scale;
|
53
|
+
jQuery.style( tween.elem, prop, start + unit );
|
54
|
+
|
55
|
+
// Update scale, tolerating zero or NaN from tween.cur(),
|
56
|
+
// break the loop if scale is unchanged or perfect, or if we've just had enough
|
57
|
+
} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
|
58
|
+
}
|
59
|
+
|
60
|
+
// Update tween properties
|
61
|
+
if ( parts ) {
|
62
|
+
start = tween.start = +start || +target || 0;
|
63
|
+
tween.unit = unit;
|
64
|
+
// If a +=/-= token was provided, we're doing a relative animation
|
65
|
+
tween.end = parts[ 1 ] ?
|
66
|
+
start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
|
67
|
+
+parts[ 2 ];
|
68
|
+
}
|
69
|
+
|
70
|
+
return tween;
|
71
|
+
} ]
|
72
|
+
};
|
73
|
+
|
74
|
+
// Animations created synchronously will run synchronously
|
75
|
+
function createFxNow() {
|
76
|
+
setTimeout(function() {
|
77
|
+
fxNow = undefined;
|
78
|
+
});
|
79
|
+
return ( fxNow = jQuery.now() );
|
80
|
+
}
|
81
|
+
|
82
|
+
// Generate parameters to create a standard animation
|
83
|
+
function genFx( type, includeWidth ) {
|
84
|
+
var which,
|
85
|
+
i = 0,
|
86
|
+
attrs = { height: type };
|
87
|
+
|
88
|
+
// If we include width, step value is 1 to do all cssExpand values,
|
89
|
+
// otherwise step value is 2 to skip over Left and Right
|
90
|
+
includeWidth = includeWidth ? 1 : 0;
|
91
|
+
for ( ; i < 4 ; i += 2 - includeWidth ) {
|
92
|
+
which = cssExpand[ i ];
|
93
|
+
attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
|
94
|
+
}
|
95
|
+
|
96
|
+
if ( includeWidth ) {
|
97
|
+
attrs.opacity = attrs.width = type;
|
98
|
+
}
|
99
|
+
|
100
|
+
return attrs;
|
101
|
+
}
|
102
|
+
|
103
|
+
function createTween( value, prop, animation ) {
|
104
|
+
var tween,
|
105
|
+
collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
|
106
|
+
index = 0,
|
107
|
+
length = collection.length;
|
108
|
+
for ( ; index < length; index++ ) {
|
109
|
+
if ( (tween = collection[ index ].call( animation, prop, value )) ) {
|
110
|
+
|
111
|
+
// We're done with this property
|
112
|
+
return tween;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
function defaultPrefilter( elem, props, opts ) {
|
118
|
+
/* jshint validthis: true */
|
119
|
+
var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
|
120
|
+
anim = this,
|
121
|
+
orig = {},
|
122
|
+
style = elem.style,
|
123
|
+
hidden = elem.nodeType && isHidden( elem ),
|
124
|
+
dataShow = data_priv.get( elem, "fxshow" );
|
125
|
+
|
126
|
+
// Handle queue: false promises
|
127
|
+
if ( !opts.queue ) {
|
128
|
+
hooks = jQuery._queueHooks( elem, "fx" );
|
129
|
+
if ( hooks.unqueued == null ) {
|
130
|
+
hooks.unqueued = 0;
|
131
|
+
oldfire = hooks.empty.fire;
|
132
|
+
hooks.empty.fire = function() {
|
133
|
+
if ( !hooks.unqueued ) {
|
134
|
+
oldfire();
|
135
|
+
}
|
136
|
+
};
|
137
|
+
}
|
138
|
+
hooks.unqueued++;
|
139
|
+
|
140
|
+
anim.always(function() {
|
141
|
+
// Ensure the complete handler is called before this completes
|
142
|
+
anim.always(function() {
|
143
|
+
hooks.unqueued--;
|
144
|
+
if ( !jQuery.queue( elem, "fx" ).length ) {
|
145
|
+
hooks.empty.fire();
|
146
|
+
}
|
147
|
+
});
|
148
|
+
});
|
149
|
+
}
|
150
|
+
|
151
|
+
// Height/width overflow pass
|
152
|
+
if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
|
153
|
+
// Make sure that nothing sneaks out
|
154
|
+
// Record all 3 overflow attributes because IE9-10 do not
|
155
|
+
// change the overflow attribute when overflowX and
|
156
|
+
// overflowY are set to the same value
|
157
|
+
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
|
158
|
+
|
159
|
+
// Set display property to inline-block for height/width
|
160
|
+
// animations on inline elements that are having width/height animated
|
161
|
+
display = jQuery.css( elem, "display" );
|
162
|
+
|
163
|
+
// Test default display if display is currently "none"
|
164
|
+
checkDisplay = display === "none" ?
|
165
|
+
data_priv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
|
166
|
+
|
167
|
+
if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
|
168
|
+
style.display = "inline-block";
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
if ( opts.overflow ) {
|
173
|
+
style.overflow = "hidden";
|
174
|
+
anim.always(function() {
|
175
|
+
style.overflow = opts.overflow[ 0 ];
|
176
|
+
style.overflowX = opts.overflow[ 1 ];
|
177
|
+
style.overflowY = opts.overflow[ 2 ];
|
178
|
+
});
|
179
|
+
}
|
180
|
+
|
181
|
+
// show/hide pass
|
182
|
+
for ( prop in props ) {
|
183
|
+
value = props[ prop ];
|
184
|
+
if ( rfxtypes.exec( value ) ) {
|
185
|
+
delete props[ prop ];
|
186
|
+
toggle = toggle || value === "toggle";
|
187
|
+
if ( value === ( hidden ? "hide" : "show" ) ) {
|
188
|
+
|
189
|
+
// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
|
190
|
+
if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
|
191
|
+
hidden = true;
|
192
|
+
} else {
|
193
|
+
continue;
|
194
|
+
}
|
195
|
+
}
|
196
|
+
orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
|
197
|
+
|
198
|
+
// Any non-fx value stops us from restoring the original display value
|
199
|
+
} else {
|
200
|
+
display = undefined;
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
if ( !jQuery.isEmptyObject( orig ) ) {
|
205
|
+
if ( dataShow ) {
|
206
|
+
if ( "hidden" in dataShow ) {
|
207
|
+
hidden = dataShow.hidden;
|
208
|
+
}
|
209
|
+
} else {
|
210
|
+
dataShow = data_priv.access( elem, "fxshow", {} );
|
211
|
+
}
|
212
|
+
|
213
|
+
// Store state if its toggle - enables .stop().toggle() to "reverse"
|
214
|
+
if ( toggle ) {
|
215
|
+
dataShow.hidden = !hidden;
|
216
|
+
}
|
217
|
+
if ( hidden ) {
|
218
|
+
jQuery( elem ).show();
|
219
|
+
} else {
|
220
|
+
anim.done(function() {
|
221
|
+
jQuery( elem ).hide();
|
222
|
+
});
|
223
|
+
}
|
224
|
+
anim.done(function() {
|
225
|
+
var prop;
|
226
|
+
|
227
|
+
data_priv.remove( elem, "fxshow" );
|
228
|
+
for ( prop in orig ) {
|
229
|
+
jQuery.style( elem, prop, orig[ prop ] );
|
230
|
+
}
|
231
|
+
});
|
232
|
+
for ( prop in orig ) {
|
233
|
+
tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
|
234
|
+
|
235
|
+
if ( !( prop in dataShow ) ) {
|
236
|
+
dataShow[ prop ] = tween.start;
|
237
|
+
if ( hidden ) {
|
238
|
+
tween.end = tween.start;
|
239
|
+
tween.start = prop === "width" || prop === "height" ? 1 : 0;
|
240
|
+
}
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
// If this is a noop like .hide().hide(), restore an overwritten display value
|
245
|
+
} else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
|
246
|
+
style.display = display;
|
247
|
+
}
|
248
|
+
}
|
249
|
+
|
250
|
+
function propFilter( props, specialEasing ) {
|
251
|
+
var index, name, easing, value, hooks;
|
252
|
+
|
253
|
+
// camelCase, specialEasing and expand cssHook pass
|
254
|
+
for ( index in props ) {
|
255
|
+
name = jQuery.camelCase( index );
|
256
|
+
easing = specialEasing[ name ];
|
257
|
+
value = props[ index ];
|
258
|
+
if ( jQuery.isArray( value ) ) {
|
259
|
+
easing = value[ 1 ];
|
260
|
+
value = props[ index ] = value[ 0 ];
|
261
|
+
}
|
262
|
+
|
263
|
+
if ( index !== name ) {
|
264
|
+
props[ name ] = value;
|
265
|
+
delete props[ index ];
|
266
|
+
}
|
267
|
+
|
268
|
+
hooks = jQuery.cssHooks[ name ];
|
269
|
+
if ( hooks && "expand" in hooks ) {
|
270
|
+
value = hooks.expand( value );
|
271
|
+
delete props[ name ];
|
272
|
+
|
273
|
+
// Not quite $.extend, this won't overwrite existing keys.
|
274
|
+
// Reusing 'index' because we have the correct "name"
|
275
|
+
for ( index in value ) {
|
276
|
+
if ( !( index in props ) ) {
|
277
|
+
props[ index ] = value[ index ];
|
278
|
+
specialEasing[ index ] = easing;
|
279
|
+
}
|
280
|
+
}
|
281
|
+
} else {
|
282
|
+
specialEasing[ name ] = easing;
|
283
|
+
}
|
284
|
+
}
|
285
|
+
}
|
286
|
+
|
287
|
+
function Animation( elem, properties, options ) {
|
288
|
+
var result,
|
289
|
+
stopped,
|
290
|
+
index = 0,
|
291
|
+
length = animationPrefilters.length,
|
292
|
+
deferred = jQuery.Deferred().always( function() {
|
293
|
+
// Don't match elem in the :animated selector
|
294
|
+
delete tick.elem;
|
295
|
+
}),
|
296
|
+
tick = function() {
|
297
|
+
if ( stopped ) {
|
298
|
+
return false;
|
299
|
+
}
|
300
|
+
var currentTime = fxNow || createFxNow(),
|
301
|
+
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
|
302
|
+
// Support: Android 2.3
|
303
|
+
// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
|
304
|
+
temp = remaining / animation.duration || 0,
|
305
|
+
percent = 1 - temp,
|
306
|
+
index = 0,
|
307
|
+
length = animation.tweens.length;
|
308
|
+
|
309
|
+
for ( ; index < length ; index++ ) {
|
310
|
+
animation.tweens[ index ].run( percent );
|
311
|
+
}
|
312
|
+
|
313
|
+
deferred.notifyWith( elem, [ animation, percent, remaining ]);
|
314
|
+
|
315
|
+
if ( percent < 1 && length ) {
|
316
|
+
return remaining;
|
317
|
+
} else {
|
318
|
+
deferred.resolveWith( elem, [ animation ] );
|
319
|
+
return false;
|
320
|
+
}
|
321
|
+
},
|
322
|
+
animation = deferred.promise({
|
323
|
+
elem: elem,
|
324
|
+
props: jQuery.extend( {}, properties ),
|
325
|
+
opts: jQuery.extend( true, { specialEasing: {} }, options ),
|
326
|
+
originalProperties: properties,
|
327
|
+
originalOptions: options,
|
328
|
+
startTime: fxNow || createFxNow(),
|
329
|
+
duration: options.duration,
|
330
|
+
tweens: [],
|
331
|
+
createTween: function( prop, end ) {
|
332
|
+
var tween = jQuery.Tween( elem, animation.opts, prop, end,
|
333
|
+
animation.opts.specialEasing[ prop ] || animation.opts.easing );
|
334
|
+
animation.tweens.push( tween );
|
335
|
+
return tween;
|
336
|
+
},
|
337
|
+
stop: function( gotoEnd ) {
|
338
|
+
var index = 0,
|
339
|
+
// If we are going to the end, we want to run all the tweens
|
340
|
+
// otherwise we skip this part
|
341
|
+
length = gotoEnd ? animation.tweens.length : 0;
|
342
|
+
if ( stopped ) {
|
343
|
+
return this;
|
344
|
+
}
|
345
|
+
stopped = true;
|
346
|
+
for ( ; index < length ; index++ ) {
|
347
|
+
animation.tweens[ index ].run( 1 );
|
348
|
+
}
|
349
|
+
|
350
|
+
// Resolve when we played the last frame; otherwise, reject
|
351
|
+
if ( gotoEnd ) {
|
352
|
+
deferred.resolveWith( elem, [ animation, gotoEnd ] );
|
353
|
+
} else {
|
354
|
+
deferred.rejectWith( elem, [ animation, gotoEnd ] );
|
355
|
+
}
|
356
|
+
return this;
|
357
|
+
}
|
358
|
+
}),
|
359
|
+
props = animation.props;
|
360
|
+
|
361
|
+
propFilter( props, animation.opts.specialEasing );
|
362
|
+
|
363
|
+
for ( ; index < length ; index++ ) {
|
364
|
+
result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
|
365
|
+
if ( result ) {
|
366
|
+
return result;
|
367
|
+
}
|
368
|
+
}
|
369
|
+
|
370
|
+
jQuery.map( props, createTween, animation );
|
371
|
+
|
372
|
+
if ( jQuery.isFunction( animation.opts.start ) ) {
|
373
|
+
animation.opts.start.call( elem, animation );
|
374
|
+
}
|
375
|
+
|
376
|
+
jQuery.fx.timer(
|
377
|
+
jQuery.extend( tick, {
|
378
|
+
elem: elem,
|
379
|
+
anim: animation,
|
380
|
+
queue: animation.opts.queue
|
381
|
+
})
|
382
|
+
);
|
383
|
+
|
384
|
+
// attach callbacks from options
|
385
|
+
return animation.progress( animation.opts.progress )
|
386
|
+
.done( animation.opts.done, animation.opts.complete )
|
387
|
+
.fail( animation.opts.fail )
|
388
|
+
.always( animation.opts.always );
|
389
|
+
}
|
390
|
+
|
391
|
+
jQuery.Animation = jQuery.extend( Animation, {
|
392
|
+
|
393
|
+
tweener: function( props, callback ) {
|
394
|
+
if ( jQuery.isFunction( props ) ) {
|
395
|
+
callback = props;
|
396
|
+
props = [ "*" ];
|
397
|
+
} else {
|
398
|
+
props = props.split(" ");
|
399
|
+
}
|
400
|
+
|
401
|
+
var prop,
|
402
|
+
index = 0,
|
403
|
+
length = props.length;
|
404
|
+
|
405
|
+
for ( ; index < length ; index++ ) {
|
406
|
+
prop = props[ index ];
|
407
|
+
tweeners[ prop ] = tweeners[ prop ] || [];
|
408
|
+
tweeners[ prop ].unshift( callback );
|
409
|
+
}
|
410
|
+
},
|
411
|
+
|
412
|
+
prefilter: function( callback, prepend ) {
|
413
|
+
if ( prepend ) {
|
414
|
+
animationPrefilters.unshift( callback );
|
415
|
+
} else {
|
416
|
+
animationPrefilters.push( callback );
|
417
|
+
}
|
418
|
+
}
|
419
|
+
});
|
420
|
+
|
421
|
+
jQuery.speed = function( speed, easing, fn ) {
|
422
|
+
var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
|
423
|
+
complete: fn || !fn && easing ||
|
424
|
+
jQuery.isFunction( speed ) && speed,
|
425
|
+
duration: speed,
|
426
|
+
easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
|
427
|
+
};
|
428
|
+
|
429
|
+
opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
|
430
|
+
opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
|
431
|
+
|
432
|
+
// Normalize opt.queue - true/undefined/null -> "fx"
|
433
|
+
if ( opt.queue == null || opt.queue === true ) {
|
434
|
+
opt.queue = "fx";
|
435
|
+
}
|
436
|
+
|
437
|
+
// Queueing
|
438
|
+
opt.old = opt.complete;
|
439
|
+
|
440
|
+
opt.complete = function() {
|
441
|
+
if ( jQuery.isFunction( opt.old ) ) {
|
442
|
+
opt.old.call( this );
|
443
|
+
}
|
444
|
+
|
445
|
+
if ( opt.queue ) {
|
446
|
+
jQuery.dequeue( this, opt.queue );
|
447
|
+
}
|
448
|
+
};
|
449
|
+
|
450
|
+
return opt;
|
451
|
+
};
|
452
|
+
|
453
|
+
jQuery.fn.extend({
|
454
|
+
fadeTo: function( speed, to, easing, callback ) {
|
455
|
+
|
456
|
+
// Show any hidden elements after setting opacity to 0
|
457
|
+
return this.filter( isHidden ).css( "opacity", 0 ).show()
|
458
|
+
|
459
|
+
// Animate to the value specified
|
460
|
+
.end().animate({ opacity: to }, speed, easing, callback );
|
461
|
+
},
|
462
|
+
animate: function( prop, speed, easing, callback ) {
|
463
|
+
var empty = jQuery.isEmptyObject( prop ),
|
464
|
+
optall = jQuery.speed( speed, easing, callback ),
|
465
|
+
doAnimation = function() {
|
466
|
+
// Operate on a copy of prop so per-property easing won't be lost
|
467
|
+
var anim = Animation( this, jQuery.extend( {}, prop ), optall );
|
468
|
+
|
469
|
+
// Empty animations, or finishing resolves immediately
|
470
|
+
if ( empty || data_priv.get( this, "finish" ) ) {
|
471
|
+
anim.stop( true );
|
472
|
+
}
|
473
|
+
};
|
474
|
+
doAnimation.finish = doAnimation;
|
475
|
+
|
476
|
+
return empty || optall.queue === false ?
|
477
|
+
this.each( doAnimation ) :
|
478
|
+
this.queue( optall.queue, doAnimation );
|
479
|
+
},
|
480
|
+
stop: function( type, clearQueue, gotoEnd ) {
|
481
|
+
var stopQueue = function( hooks ) {
|
482
|
+
var stop = hooks.stop;
|
483
|
+
delete hooks.stop;
|
484
|
+
stop( gotoEnd );
|
485
|
+
};
|
486
|
+
|
487
|
+
if ( typeof type !== "string" ) {
|
488
|
+
gotoEnd = clearQueue;
|
489
|
+
clearQueue = type;
|
490
|
+
type = undefined;
|
491
|
+
}
|
492
|
+
if ( clearQueue && type !== false ) {
|
493
|
+
this.queue( type || "fx", [] );
|
494
|
+
}
|
495
|
+
|
496
|
+
return this.each(function() {
|
497
|
+
var dequeue = true,
|
498
|
+
index = type != null && type + "queueHooks",
|
499
|
+
timers = jQuery.timers,
|
500
|
+
data = data_priv.get( this );
|
501
|
+
|
502
|
+
if ( index ) {
|
503
|
+
if ( data[ index ] && data[ index ].stop ) {
|
504
|
+
stopQueue( data[ index ] );
|
505
|
+
}
|
506
|
+
} else {
|
507
|
+
for ( index in data ) {
|
508
|
+
if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
|
509
|
+
stopQueue( data[ index ] );
|
510
|
+
}
|
511
|
+
}
|
512
|
+
}
|
513
|
+
|
514
|
+
for ( index = timers.length; index--; ) {
|
515
|
+
if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
|
516
|
+
timers[ index ].anim.stop( gotoEnd );
|
517
|
+
dequeue = false;
|
518
|
+
timers.splice( index, 1 );
|
519
|
+
}
|
520
|
+
}
|
521
|
+
|
522
|
+
// Start the next in the queue if the last step wasn't forced.
|
523
|
+
// Timers currently will call their complete callbacks, which
|
524
|
+
// will dequeue but only if they were gotoEnd.
|
525
|
+
if ( dequeue || !gotoEnd ) {
|
526
|
+
jQuery.dequeue( this, type );
|
527
|
+
}
|
528
|
+
});
|
529
|
+
},
|
530
|
+
finish: function( type ) {
|
531
|
+
if ( type !== false ) {
|
532
|
+
type = type || "fx";
|
533
|
+
}
|
534
|
+
return this.each(function() {
|
535
|
+
var index,
|
536
|
+
data = data_priv.get( this ),
|
537
|
+
queue = data[ type + "queue" ],
|
538
|
+
hooks = data[ type + "queueHooks" ],
|
539
|
+
timers = jQuery.timers,
|
540
|
+
length = queue ? queue.length : 0;
|
541
|
+
|
542
|
+
// Enable finishing flag on private data
|
543
|
+
data.finish = true;
|
544
|
+
|
545
|
+
// Empty the queue first
|
546
|
+
jQuery.queue( this, type, [] );
|
547
|
+
|
548
|
+
if ( hooks && hooks.stop ) {
|
549
|
+
hooks.stop.call( this, true );
|
550
|
+
}
|
551
|
+
|
552
|
+
// Look for any active animations, and finish them
|
553
|
+
for ( index = timers.length; index--; ) {
|
554
|
+
if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
|
555
|
+
timers[ index ].anim.stop( true );
|
556
|
+
timers.splice( index, 1 );
|
557
|
+
}
|
558
|
+
}
|
559
|
+
|
560
|
+
// Look for any animations in the old queue and finish them
|
561
|
+
for ( index = 0; index < length; index++ ) {
|
562
|
+
if ( queue[ index ] && queue[ index ].finish ) {
|
563
|
+
queue[ index ].finish.call( this );
|
564
|
+
}
|
565
|
+
}
|
566
|
+
|
567
|
+
// Turn off finishing flag
|
568
|
+
delete data.finish;
|
569
|
+
});
|
570
|
+
}
|
571
|
+
});
|
572
|
+
|
573
|
+
jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
|
574
|
+
var cssFn = jQuery.fn[ name ];
|
575
|
+
jQuery.fn[ name ] = function( speed, easing, callback ) {
|
576
|
+
return speed == null || typeof speed === "boolean" ?
|
577
|
+
cssFn.apply( this, arguments ) :
|
578
|
+
this.animate( genFx( name, true ), speed, easing, callback );
|
579
|
+
};
|
580
|
+
});
|
581
|
+
|
582
|
+
// Generate shortcuts for custom animations
|
583
|
+
jQuery.each({
|
584
|
+
slideDown: genFx("show"),
|
585
|
+
slideUp: genFx("hide"),
|
586
|
+
slideToggle: genFx("toggle"),
|
587
|
+
fadeIn: { opacity: "show" },
|
588
|
+
fadeOut: { opacity: "hide" },
|
589
|
+
fadeToggle: { opacity: "toggle" }
|
590
|
+
}, function( name, props ) {
|
591
|
+
jQuery.fn[ name ] = function( speed, easing, callback ) {
|
592
|
+
return this.animate( props, speed, easing, callback );
|
593
|
+
};
|
594
|
+
});
|
595
|
+
|
596
|
+
jQuery.timers = [];
|
597
|
+
jQuery.fx.tick = function() {
|
598
|
+
var timer,
|
599
|
+
i = 0,
|
600
|
+
timers = jQuery.timers;
|
601
|
+
|
602
|
+
fxNow = jQuery.now();
|
603
|
+
|
604
|
+
for ( ; i < timers.length; i++ ) {
|
605
|
+
timer = timers[ i ];
|
606
|
+
// Checks the timer has not already been removed
|
607
|
+
if ( !timer() && timers[ i ] === timer ) {
|
608
|
+
timers.splice( i--, 1 );
|
609
|
+
}
|
610
|
+
}
|
611
|
+
|
612
|
+
if ( !timers.length ) {
|
613
|
+
jQuery.fx.stop();
|
614
|
+
}
|
615
|
+
fxNow = undefined;
|
616
|
+
};
|
617
|
+
|
618
|
+
jQuery.fx.timer = function( timer ) {
|
619
|
+
jQuery.timers.push( timer );
|
620
|
+
if ( timer() ) {
|
621
|
+
jQuery.fx.start();
|
622
|
+
} else {
|
623
|
+
jQuery.timers.pop();
|
624
|
+
}
|
625
|
+
};
|
626
|
+
|
627
|
+
jQuery.fx.interval = 13;
|
628
|
+
|
629
|
+
jQuery.fx.start = function() {
|
630
|
+
if ( !timerId ) {
|
631
|
+
timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
|
632
|
+
}
|
633
|
+
};
|
634
|
+
|
635
|
+
jQuery.fx.stop = function() {
|
636
|
+
clearInterval( timerId );
|
637
|
+
timerId = null;
|
638
|
+
};
|
639
|
+
|
640
|
+
jQuery.fx.speeds = {
|
641
|
+
slow: 600,
|
642
|
+
fast: 200,
|
643
|
+
// Default speed
|
644
|
+
_default: 400
|
645
|
+
};
|
646
|
+
|
647
|
+
return jQuery;
|
648
|
+
});
|