jquery-ui-rails 4.2.1 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.travis.yml +1 -1
- data/History.md +45 -2
- data/README.md +100 -83
- data/Rakefile +82 -49
- data/VERSIONS.md +10 -0
- data/app/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_444444_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_555555_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_777620_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_777777_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_cc0000_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/javascripts/jquery-ui/data.js +39 -0
- data/app/assets/javascripts/jquery-ui/disable-selection.js +51 -0
- data/app/assets/javascripts/jquery-ui/effect.all.js +15 -0
- data/app/assets/javascripts/jquery-ui/effect.js +954 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-blind.js +76 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-bounce.js +116 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-clip.js +71 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-drop.js +75 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-explode.js +117 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-fade.js +53 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-fold.js +95 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-highlight.js +63 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-puff.js +49 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-pulsate.js +70 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-scale.js +63 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-shake.js +80 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-size.js +199 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-slide.js +82 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-transfer.js +46 -0
- data/app/assets/javascripts/jquery-ui/focusable.js +79 -0
- data/app/assets/javascripts/jquery-ui/form-reset-mixin.js +81 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-af.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ar-DZ.js +42 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ar.js +42 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-az.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-be.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-bg.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-bs.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ca.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-cs.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-cy-GB.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-da.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-de-AT.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-de.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-el.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-en-AU.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-en-GB.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-en-NZ.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-eo.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-es.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-et.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-eu.js +39 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js +76 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fi.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fo.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CA.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CH.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fr.js +42 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-gl.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-he.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hi.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hr.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hu.js +39 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hy.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-id.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-is.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-it-CH.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-it.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ja.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ka.js +51 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-kk.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-km.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ko.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ky.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-lb.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-lt.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-lv.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-mk.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ml.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ms.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nb.js +52 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nl-BE.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nl.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nn.js +52 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-no.js +53 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-pl.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-pt-BR.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-pt.js +47 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-rm.js +64 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ro.js +43 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ru.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sk.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sl.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sq.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sr-SR.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sr.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sv.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ta.js +56 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-th.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-tj.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-tr.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-uk.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-vi.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-CN.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-HK.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-TW.js +40 -0
- data/app/assets/javascripts/jquery-ui/jquery-patch.js +58 -0
- data/app/assets/javascripts/jquery-ui/jquery-var-for-color.js +24 -0
- data/app/assets/javascripts/jquery-ui/keycode.js +51 -0
- data/app/assets/javascripts/jquery-ui/labels.js +70 -0
- data/app/assets/javascripts/jquery-ui/plugin.js +49 -0
- data/app/assets/javascripts/{jquery.ui.position.js → jquery-ui/position.js} +123 -111
- data/app/assets/javascripts/jquery-ui/scroll-parent.js +50 -0
- data/app/assets/javascripts/jquery-ui/tabbable.js +41 -0
- data/app/assets/javascripts/jquery-ui/unique-id.js +54 -0
- data/app/assets/javascripts/jquery-ui/vendor/jquery-color/jquery.color.js +691 -0
- data/app/assets/javascripts/jquery-ui/version.js +20 -0
- data/app/assets/javascripts/jquery-ui/widget.js +761 -0
- data/app/assets/javascripts/{jquery.ui.accordion.js → jquery-ui/widgets/accordion.js} +263 -209
- data/app/assets/javascripts/{jquery.ui.autocomplete.js → jquery-ui/widgets/autocomplete.js} +177 -142
- data/app/assets/javascripts/jquery-ui/widgets/button.js +454 -0
- data/app/assets/javascripts/jquery-ui/widgets/checkboxradio.js +294 -0
- data/app/assets/javascripts/jquery-ui/widgets/controlgroup.js +304 -0
- data/app/assets/javascripts/jquery-ui/widgets/datepicker.js +2240 -0
- data/app/assets/javascripts/jquery-ui/widgets/dialog.js +957 -0
- data/app/assets/javascripts/jquery-ui/widgets/draggable.js +1264 -0
- data/app/assets/javascripts/jquery-ui/widgets/droppable.js +508 -0
- data/app/assets/javascripts/{jquery.ui.menu.js → jquery-ui/widgets/menu.js} +276 -189
- data/app/assets/javascripts/jquery-ui/widgets/mouse.js +226 -0
- data/app/assets/javascripts/jquery-ui/widgets/progressbar.js +184 -0
- data/app/assets/javascripts/jquery-ui/widgets/resizable.js +1281 -0
- data/app/assets/javascripts/jquery-ui/widgets/selectable.js +321 -0
- data/app/assets/javascripts/jquery-ui/widgets/selectmenu.js +675 -0
- data/app/assets/javascripts/{jquery.ui.slider.js → jquery-ui/widgets/slider.js} +256 -176
- data/app/assets/javascripts/jquery-ui/widgets/sortable.js +1614 -0
- data/app/assets/javascripts/{jquery.ui.spinner.js → jquery-ui/widgets/spinner.js} +200 -137
- data/app/assets/javascripts/{jquery.ui.tabs.js → jquery-ui/widgets/tabs.js} +322 -277
- data/app/assets/javascripts/jquery-ui/widgets/tooltip.js +528 -0
- data/app/assets/javascripts/jquery-ui.js +52 -0
- data/app/assets/stylesheets/jquery-ui/accordion.css +26 -0
- data/app/assets/stylesheets/jquery-ui/all.css +14 -0
- data/app/assets/stylesheets/jquery-ui/autocomplete.css +19 -0
- data/app/assets/stylesheets/jquery-ui/base.css +32 -0
- data/app/assets/stylesheets/jquery-ui/button.css +80 -0
- data/app/assets/stylesheets/jquery-ui/checkboxradio.css +37 -0
- data/app/assets/stylesheets/jquery-ui/controlgroup.css +65 -0
- data/app/assets/stylesheets/{jquery.ui.core.css.erb → jquery-ui/core.css} +15 -12
- data/app/assets/stylesheets/{jquery.ui.datepicker.css.erb → jquery-ui/datepicker.css} +17 -8
- data/app/assets/stylesheets/{jquery.ui.dialog.css.erb → jquery-ui/dialog.css} +43 -15
- data/app/assets/stylesheets/jquery-ui/draggable.css +14 -0
- data/app/assets/stylesheets/jquery-ui/menu.css +65 -0
- data/app/assets/stylesheets/jquery-ui/progressbar.css +30 -0
- data/app/assets/stylesheets/{jquery.ui.resizable.css.erb → jquery-ui/resizable.css} +6 -6
- data/app/assets/stylesheets/jquery-ui/selectable.css +19 -0
- data/app/assets/stylesheets/jquery-ui/selectmenu.css +53 -0
- data/app/assets/stylesheets/{jquery.ui.slider.css.erb → jquery-ui/slider.css} +8 -14
- data/app/assets/stylesheets/jquery-ui/sortable.css +14 -0
- data/app/assets/stylesheets/{jquery.ui.spinner.css.erb → jquery-ui/spinner.css} +12 -27
- data/app/assets/stylesheets/{jquery.ui.tabs.css.erb → jquery-ui/tabs.css} +6 -7
- data/app/assets/stylesheets/{jquery.ui.theme.css.erb → jquery-ui/theme.css.erb} +121 -102
- data/app/assets/stylesheets/jquery-ui/tooltip.css +22 -0
- data/app/assets/stylesheets/jquery-ui.css +1 -0
- data/lib/jquery/ui/rails/version.rb +2 -2
- metadata +178 -169
- data/app/assets/images/jquery-ui/animated-overlay.gif +0 -0
- data/app/assets/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_222222_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_454545_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_888888_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/javascripts/jquery.ui.all.js +0 -34
- data/app/assets/javascripts/jquery.ui.button.js +0 -398
- data/app/assets/javascripts/jquery.ui.core.js +0 -320
- data/app/assets/javascripts/jquery.ui.datepicker-af.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ar-DZ.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ar.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-az.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-be.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-bg.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-bs.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ca.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-cs.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-cy-GB.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-da.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-de.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-el.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-en-AU.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-en-GB.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-en-NZ.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-eo.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-es.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-et.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-eu.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fa.js +0 -59
- data/app/assets/javascripts/jquery.ui.datepicker-fi.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fo.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fr-CA.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fr-CH.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fr.js +0 -25
- data/app/assets/javascripts/jquery.ui.datepicker-gl.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-he.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hi.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hr.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hu.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hy.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-id.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-is.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-it.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ja.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ka.js +0 -21
- data/app/assets/javascripts/jquery.ui.datepicker-kk.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-km.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ko.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ky.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-lb.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-lt.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-lv.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-mk.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ml.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ms.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-nb.js +0 -22
- data/app/assets/javascripts/jquery.ui.datepicker-nl-BE.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-nl.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-nn.js +0 -22
- data/app/assets/javascripts/jquery.ui.datepicker-no.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-pl.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-pt-BR.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-pt.js +0 -22
- data/app/assets/javascripts/jquery.ui.datepicker-rm.js +0 -21
- data/app/assets/javascripts/jquery.ui.datepicker-ro.js +0 -26
- data/app/assets/javascripts/jquery.ui.datepicker-ru.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sk.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sl.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-sq.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sr-SR.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sr.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sv.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ta.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-th.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-tj.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-tr.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-uk.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-vi.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-zh-CN.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-zh-HK.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-zh-TW.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker.js +0 -2040
- data/app/assets/javascripts/jquery.ui.dialog.js +0 -830
- data/app/assets/javascripts/jquery.ui.draggable.js +0 -962
- data/app/assets/javascripts/jquery.ui.droppable.js +0 -394
- data/app/assets/javascripts/jquery.ui.effect-blind.js +0 -84
- data/app/assets/javascripts/jquery.ui.effect-bounce.js +0 -115
- data/app/assets/javascripts/jquery.ui.effect-clip.js +0 -69
- data/app/assets/javascripts/jquery.ui.effect-drop.js +0 -67
- data/app/assets/javascripts/jquery.ui.effect-explode.js +0 -99
- data/app/assets/javascripts/jquery.ui.effect-fade.js +0 -32
- data/app/assets/javascripts/jquery.ui.effect-fold.js +0 -78
- data/app/assets/javascripts/jquery.ui.effect-highlight.js +0 -52
- data/app/assets/javascripts/jquery.ui.effect-pulsate.js +0 -65
- data/app/assets/javascripts/jquery.ui.effect-scale.js +0 -320
- data/app/assets/javascripts/jquery.ui.effect-shake.js +0 -76
- data/app/assets/javascripts/jquery.ui.effect-slide.js +0 -66
- data/app/assets/javascripts/jquery.ui.effect-transfer.js +0 -49
- data/app/assets/javascripts/jquery.ui.effect.all.js +0 -14
- data/app/assets/javascripts/jquery.ui.effect.js +0 -1289
- data/app/assets/javascripts/jquery.ui.mouse.js +0 -172
- data/app/assets/javascripts/jquery.ui.progressbar.js +0 -148
- data/app/assets/javascripts/jquery.ui.resizable.js +0 -982
- data/app/assets/javascripts/jquery.ui.selectable.js +0 -281
- data/app/assets/javascripts/jquery.ui.sortable.js +0 -1293
- data/app/assets/javascripts/jquery.ui.tooltip.js +0 -406
- data/app/assets/javascripts/jquery.ui.widget.js +0 -521
- data/app/assets/stylesheets/jquery.ui.accordion.css.erb +0 -42
- data/app/assets/stylesheets/jquery.ui.all.css.erb +0 -14
- data/app/assets/stylesheets/jquery.ui.autocomplete.css.erb +0 -21
- data/app/assets/stylesheets/jquery.ui.base.css.erb +0 -27
- data/app/assets/stylesheets/jquery.ui.button.css.erb +0 -118
- data/app/assets/stylesheets/jquery.ui.menu.css.erb +0 -83
- data/app/assets/stylesheets/jquery.ui.progressbar.css.erb +0 -37
- data/app/assets/stylesheets/jquery.ui.selectable.css.erb +0 -17
- data/app/assets/stylesheets/jquery.ui.tooltip.css.erb +0 -25
@@ -1,521 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI Widget 1.10.4
|
3
|
-
* http://jqueryui.com
|
4
|
-
*
|
5
|
-
* Copyright 2014 jQuery Foundation and other contributors
|
6
|
-
* Released under the MIT license.
|
7
|
-
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://api.jqueryui.com/jQuery.widget/
|
10
|
-
*/
|
11
|
-
(function( $, undefined ) {
|
12
|
-
|
13
|
-
var uuid = 0,
|
14
|
-
slice = Array.prototype.slice,
|
15
|
-
_cleanData = $.cleanData;
|
16
|
-
$.cleanData = function( elems ) {
|
17
|
-
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
|
18
|
-
try {
|
19
|
-
$( elem ).triggerHandler( "remove" );
|
20
|
-
// http://bugs.jquery.com/ticket/8235
|
21
|
-
} catch( e ) {}
|
22
|
-
}
|
23
|
-
_cleanData( elems );
|
24
|
-
};
|
25
|
-
|
26
|
-
$.widget = function( name, base, prototype ) {
|
27
|
-
var fullName, existingConstructor, constructor, basePrototype,
|
28
|
-
// proxiedPrototype allows the provided prototype to remain unmodified
|
29
|
-
// so that it can be used as a mixin for multiple widgets (#8876)
|
30
|
-
proxiedPrototype = {},
|
31
|
-
namespace = name.split( "." )[ 0 ];
|
32
|
-
|
33
|
-
name = name.split( "." )[ 1 ];
|
34
|
-
fullName = namespace + "-" + name;
|
35
|
-
|
36
|
-
if ( !prototype ) {
|
37
|
-
prototype = base;
|
38
|
-
base = $.Widget;
|
39
|
-
}
|
40
|
-
|
41
|
-
// create selector for plugin
|
42
|
-
$.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
|
43
|
-
return !!$.data( elem, fullName );
|
44
|
-
};
|
45
|
-
|
46
|
-
$[ namespace ] = $[ namespace ] || {};
|
47
|
-
existingConstructor = $[ namespace ][ name ];
|
48
|
-
constructor = $[ namespace ][ name ] = function( options, element ) {
|
49
|
-
// allow instantiation without "new" keyword
|
50
|
-
if ( !this._createWidget ) {
|
51
|
-
return new constructor( options, element );
|
52
|
-
}
|
53
|
-
|
54
|
-
// allow instantiation without initializing for simple inheritance
|
55
|
-
// must use "new" keyword (the code above always passes args)
|
56
|
-
if ( arguments.length ) {
|
57
|
-
this._createWidget( options, element );
|
58
|
-
}
|
59
|
-
};
|
60
|
-
// extend with the existing constructor to carry over any static properties
|
61
|
-
$.extend( constructor, existingConstructor, {
|
62
|
-
version: prototype.version,
|
63
|
-
// copy the object used to create the prototype in case we need to
|
64
|
-
// redefine the widget later
|
65
|
-
_proto: $.extend( {}, prototype ),
|
66
|
-
// track widgets that inherit from this widget in case this widget is
|
67
|
-
// redefined after a widget inherits from it
|
68
|
-
_childConstructors: []
|
69
|
-
});
|
70
|
-
|
71
|
-
basePrototype = new base();
|
72
|
-
// we need to make the options hash a property directly on the new instance
|
73
|
-
// otherwise we'll modify the options hash on the prototype that we're
|
74
|
-
// inheriting from
|
75
|
-
basePrototype.options = $.widget.extend( {}, basePrototype.options );
|
76
|
-
$.each( prototype, function( prop, value ) {
|
77
|
-
if ( !$.isFunction( value ) ) {
|
78
|
-
proxiedPrototype[ prop ] = value;
|
79
|
-
return;
|
80
|
-
}
|
81
|
-
proxiedPrototype[ prop ] = (function() {
|
82
|
-
var _super = function() {
|
83
|
-
return base.prototype[ prop ].apply( this, arguments );
|
84
|
-
},
|
85
|
-
_superApply = function( args ) {
|
86
|
-
return base.prototype[ prop ].apply( this, args );
|
87
|
-
};
|
88
|
-
return function() {
|
89
|
-
var __super = this._super,
|
90
|
-
__superApply = this._superApply,
|
91
|
-
returnValue;
|
92
|
-
|
93
|
-
this._super = _super;
|
94
|
-
this._superApply = _superApply;
|
95
|
-
|
96
|
-
returnValue = value.apply( this, arguments );
|
97
|
-
|
98
|
-
this._super = __super;
|
99
|
-
this._superApply = __superApply;
|
100
|
-
|
101
|
-
return returnValue;
|
102
|
-
};
|
103
|
-
})();
|
104
|
-
});
|
105
|
-
constructor.prototype = $.widget.extend( basePrototype, {
|
106
|
-
// TODO: remove support for widgetEventPrefix
|
107
|
-
// always use the name + a colon as the prefix, e.g., draggable:start
|
108
|
-
// don't prefix for widgets that aren't DOM-based
|
109
|
-
widgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name
|
110
|
-
}, proxiedPrototype, {
|
111
|
-
constructor: constructor,
|
112
|
-
namespace: namespace,
|
113
|
-
widgetName: name,
|
114
|
-
widgetFullName: fullName
|
115
|
-
});
|
116
|
-
|
117
|
-
// If this widget is being redefined then we need to find all widgets that
|
118
|
-
// are inheriting from it and redefine all of them so that they inherit from
|
119
|
-
// the new version of this widget. We're essentially trying to replace one
|
120
|
-
// level in the prototype chain.
|
121
|
-
if ( existingConstructor ) {
|
122
|
-
$.each( existingConstructor._childConstructors, function( i, child ) {
|
123
|
-
var childPrototype = child.prototype;
|
124
|
-
|
125
|
-
// redefine the child widget using the same prototype that was
|
126
|
-
// originally used, but inherit from the new version of the base
|
127
|
-
$.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto );
|
128
|
-
});
|
129
|
-
// remove the list of existing child constructors from the old constructor
|
130
|
-
// so the old child constructors can be garbage collected
|
131
|
-
delete existingConstructor._childConstructors;
|
132
|
-
} else {
|
133
|
-
base._childConstructors.push( constructor );
|
134
|
-
}
|
135
|
-
|
136
|
-
$.widget.bridge( name, constructor );
|
137
|
-
};
|
138
|
-
|
139
|
-
$.widget.extend = function( target ) {
|
140
|
-
var input = slice.call( arguments, 1 ),
|
141
|
-
inputIndex = 0,
|
142
|
-
inputLength = input.length,
|
143
|
-
key,
|
144
|
-
value;
|
145
|
-
for ( ; inputIndex < inputLength; inputIndex++ ) {
|
146
|
-
for ( key in input[ inputIndex ] ) {
|
147
|
-
value = input[ inputIndex ][ key ];
|
148
|
-
if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
|
149
|
-
// Clone objects
|
150
|
-
if ( $.isPlainObject( value ) ) {
|
151
|
-
target[ key ] = $.isPlainObject( target[ key ] ) ?
|
152
|
-
$.widget.extend( {}, target[ key ], value ) :
|
153
|
-
// Don't extend strings, arrays, etc. with objects
|
154
|
-
$.widget.extend( {}, value );
|
155
|
-
// Copy everything else by reference
|
156
|
-
} else {
|
157
|
-
target[ key ] = value;
|
158
|
-
}
|
159
|
-
}
|
160
|
-
}
|
161
|
-
}
|
162
|
-
return target;
|
163
|
-
};
|
164
|
-
|
165
|
-
$.widget.bridge = function( name, object ) {
|
166
|
-
var fullName = object.prototype.widgetFullName || name;
|
167
|
-
$.fn[ name ] = function( options ) {
|
168
|
-
var isMethodCall = typeof options === "string",
|
169
|
-
args = slice.call( arguments, 1 ),
|
170
|
-
returnValue = this;
|
171
|
-
|
172
|
-
// allow multiple hashes to be passed on init
|
173
|
-
options = !isMethodCall && args.length ?
|
174
|
-
$.widget.extend.apply( null, [ options ].concat(args) ) :
|
175
|
-
options;
|
176
|
-
|
177
|
-
if ( isMethodCall ) {
|
178
|
-
this.each(function() {
|
179
|
-
var methodValue,
|
180
|
-
instance = $.data( this, fullName );
|
181
|
-
if ( !instance ) {
|
182
|
-
return $.error( "cannot call methods on " + name + " prior to initialization; " +
|
183
|
-
"attempted to call method '" + options + "'" );
|
184
|
-
}
|
185
|
-
if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) {
|
186
|
-
return $.error( "no such method '" + options + "' for " + name + " widget instance" );
|
187
|
-
}
|
188
|
-
methodValue = instance[ options ].apply( instance, args );
|
189
|
-
if ( methodValue !== instance && methodValue !== undefined ) {
|
190
|
-
returnValue = methodValue && methodValue.jquery ?
|
191
|
-
returnValue.pushStack( methodValue.get() ) :
|
192
|
-
methodValue;
|
193
|
-
return false;
|
194
|
-
}
|
195
|
-
});
|
196
|
-
} else {
|
197
|
-
this.each(function() {
|
198
|
-
var instance = $.data( this, fullName );
|
199
|
-
if ( instance ) {
|
200
|
-
instance.option( options || {} )._init();
|
201
|
-
} else {
|
202
|
-
$.data( this, fullName, new object( options, this ) );
|
203
|
-
}
|
204
|
-
});
|
205
|
-
}
|
206
|
-
|
207
|
-
return returnValue;
|
208
|
-
};
|
209
|
-
};
|
210
|
-
|
211
|
-
$.Widget = function( /* options, element */ ) {};
|
212
|
-
$.Widget._childConstructors = [];
|
213
|
-
|
214
|
-
$.Widget.prototype = {
|
215
|
-
widgetName: "widget",
|
216
|
-
widgetEventPrefix: "",
|
217
|
-
defaultElement: "<div>",
|
218
|
-
options: {
|
219
|
-
disabled: false,
|
220
|
-
|
221
|
-
// callbacks
|
222
|
-
create: null
|
223
|
-
},
|
224
|
-
_createWidget: function( options, element ) {
|
225
|
-
element = $( element || this.defaultElement || this )[ 0 ];
|
226
|
-
this.element = $( element );
|
227
|
-
this.uuid = uuid++;
|
228
|
-
this.eventNamespace = "." + this.widgetName + this.uuid;
|
229
|
-
this.options = $.widget.extend( {},
|
230
|
-
this.options,
|
231
|
-
this._getCreateOptions(),
|
232
|
-
options );
|
233
|
-
|
234
|
-
this.bindings = $();
|
235
|
-
this.hoverable = $();
|
236
|
-
this.focusable = $();
|
237
|
-
|
238
|
-
if ( element !== this ) {
|
239
|
-
$.data( element, this.widgetFullName, this );
|
240
|
-
this._on( true, this.element, {
|
241
|
-
remove: function( event ) {
|
242
|
-
if ( event.target === element ) {
|
243
|
-
this.destroy();
|
244
|
-
}
|
245
|
-
}
|
246
|
-
});
|
247
|
-
this.document = $( element.style ?
|
248
|
-
// element within the document
|
249
|
-
element.ownerDocument :
|
250
|
-
// element is window or document
|
251
|
-
element.document || element );
|
252
|
-
this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
|
253
|
-
}
|
254
|
-
|
255
|
-
this._create();
|
256
|
-
this._trigger( "create", null, this._getCreateEventData() );
|
257
|
-
this._init();
|
258
|
-
},
|
259
|
-
_getCreateOptions: $.noop,
|
260
|
-
_getCreateEventData: $.noop,
|
261
|
-
_create: $.noop,
|
262
|
-
_init: $.noop,
|
263
|
-
|
264
|
-
destroy: function() {
|
265
|
-
this._destroy();
|
266
|
-
// we can probably remove the unbind calls in 2.0
|
267
|
-
// all event bindings should go through this._on()
|
268
|
-
this.element
|
269
|
-
.unbind( this.eventNamespace )
|
270
|
-
// 1.9 BC for #7810
|
271
|
-
// TODO remove dual storage
|
272
|
-
.removeData( this.widgetName )
|
273
|
-
.removeData( this.widgetFullName )
|
274
|
-
// support: jquery <1.6.3
|
275
|
-
// http://bugs.jquery.com/ticket/9413
|
276
|
-
.removeData( $.camelCase( this.widgetFullName ) );
|
277
|
-
this.widget()
|
278
|
-
.unbind( this.eventNamespace )
|
279
|
-
.removeAttr( "aria-disabled" )
|
280
|
-
.removeClass(
|
281
|
-
this.widgetFullName + "-disabled " +
|
282
|
-
"ui-state-disabled" );
|
283
|
-
|
284
|
-
// clean up events and states
|
285
|
-
this.bindings.unbind( this.eventNamespace );
|
286
|
-
this.hoverable.removeClass( "ui-state-hover" );
|
287
|
-
this.focusable.removeClass( "ui-state-focus" );
|
288
|
-
},
|
289
|
-
_destroy: $.noop,
|
290
|
-
|
291
|
-
widget: function() {
|
292
|
-
return this.element;
|
293
|
-
},
|
294
|
-
|
295
|
-
option: function( key, value ) {
|
296
|
-
var options = key,
|
297
|
-
parts,
|
298
|
-
curOption,
|
299
|
-
i;
|
300
|
-
|
301
|
-
if ( arguments.length === 0 ) {
|
302
|
-
// don't return a reference to the internal hash
|
303
|
-
return $.widget.extend( {}, this.options );
|
304
|
-
}
|
305
|
-
|
306
|
-
if ( typeof key === "string" ) {
|
307
|
-
// handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
|
308
|
-
options = {};
|
309
|
-
parts = key.split( "." );
|
310
|
-
key = parts.shift();
|
311
|
-
if ( parts.length ) {
|
312
|
-
curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
|
313
|
-
for ( i = 0; i < parts.length - 1; i++ ) {
|
314
|
-
curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
|
315
|
-
curOption = curOption[ parts[ i ] ];
|
316
|
-
}
|
317
|
-
key = parts.pop();
|
318
|
-
if ( arguments.length === 1 ) {
|
319
|
-
return curOption[ key ] === undefined ? null : curOption[ key ];
|
320
|
-
}
|
321
|
-
curOption[ key ] = value;
|
322
|
-
} else {
|
323
|
-
if ( arguments.length === 1 ) {
|
324
|
-
return this.options[ key ] === undefined ? null : this.options[ key ];
|
325
|
-
}
|
326
|
-
options[ key ] = value;
|
327
|
-
}
|
328
|
-
}
|
329
|
-
|
330
|
-
this._setOptions( options );
|
331
|
-
|
332
|
-
return this;
|
333
|
-
},
|
334
|
-
_setOptions: function( options ) {
|
335
|
-
var key;
|
336
|
-
|
337
|
-
for ( key in options ) {
|
338
|
-
this._setOption( key, options[ key ] );
|
339
|
-
}
|
340
|
-
|
341
|
-
return this;
|
342
|
-
},
|
343
|
-
_setOption: function( key, value ) {
|
344
|
-
this.options[ key ] = value;
|
345
|
-
|
346
|
-
if ( key === "disabled" ) {
|
347
|
-
this.widget()
|
348
|
-
.toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value )
|
349
|
-
.attr( "aria-disabled", value );
|
350
|
-
this.hoverable.removeClass( "ui-state-hover" );
|
351
|
-
this.focusable.removeClass( "ui-state-focus" );
|
352
|
-
}
|
353
|
-
|
354
|
-
return this;
|
355
|
-
},
|
356
|
-
|
357
|
-
enable: function() {
|
358
|
-
return this._setOption( "disabled", false );
|
359
|
-
},
|
360
|
-
disable: function() {
|
361
|
-
return this._setOption( "disabled", true );
|
362
|
-
},
|
363
|
-
|
364
|
-
_on: function( suppressDisabledCheck, element, handlers ) {
|
365
|
-
var delegateElement,
|
366
|
-
instance = this;
|
367
|
-
|
368
|
-
// no suppressDisabledCheck flag, shuffle arguments
|
369
|
-
if ( typeof suppressDisabledCheck !== "boolean" ) {
|
370
|
-
handlers = element;
|
371
|
-
element = suppressDisabledCheck;
|
372
|
-
suppressDisabledCheck = false;
|
373
|
-
}
|
374
|
-
|
375
|
-
// no element argument, shuffle and use this.element
|
376
|
-
if ( !handlers ) {
|
377
|
-
handlers = element;
|
378
|
-
element = this.element;
|
379
|
-
delegateElement = this.widget();
|
380
|
-
} else {
|
381
|
-
// accept selectors, DOM elements
|
382
|
-
element = delegateElement = $( element );
|
383
|
-
this.bindings = this.bindings.add( element );
|
384
|
-
}
|
385
|
-
|
386
|
-
$.each( handlers, function( event, handler ) {
|
387
|
-
function handlerProxy() {
|
388
|
-
// allow widgets to customize the disabled handling
|
389
|
-
// - disabled as an array instead of boolean
|
390
|
-
// - disabled class as method for disabling individual parts
|
391
|
-
if ( !suppressDisabledCheck &&
|
392
|
-
( instance.options.disabled === true ||
|
393
|
-
$( this ).hasClass( "ui-state-disabled" ) ) ) {
|
394
|
-
return;
|
395
|
-
}
|
396
|
-
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
397
|
-
.apply( instance, arguments );
|
398
|
-
}
|
399
|
-
|
400
|
-
// copy the guid so direct unbinding works
|
401
|
-
if ( typeof handler !== "string" ) {
|
402
|
-
handlerProxy.guid = handler.guid =
|
403
|
-
handler.guid || handlerProxy.guid || $.guid++;
|
404
|
-
}
|
405
|
-
|
406
|
-
var match = event.match( /^(\w+)\s*(.*)$/ ),
|
407
|
-
eventName = match[1] + instance.eventNamespace,
|
408
|
-
selector = match[2];
|
409
|
-
if ( selector ) {
|
410
|
-
delegateElement.delegate( selector, eventName, handlerProxy );
|
411
|
-
} else {
|
412
|
-
element.bind( eventName, handlerProxy );
|
413
|
-
}
|
414
|
-
});
|
415
|
-
},
|
416
|
-
|
417
|
-
_off: function( element, eventName ) {
|
418
|
-
eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace;
|
419
|
-
element.unbind( eventName ).undelegate( eventName );
|
420
|
-
},
|
421
|
-
|
422
|
-
_delay: function( handler, delay ) {
|
423
|
-
function handlerProxy() {
|
424
|
-
return ( typeof handler === "string" ? instance[ handler ] : handler )
|
425
|
-
.apply( instance, arguments );
|
426
|
-
}
|
427
|
-
var instance = this;
|
428
|
-
return setTimeout( handlerProxy, delay || 0 );
|
429
|
-
},
|
430
|
-
|
431
|
-
_hoverable: function( element ) {
|
432
|
-
this.hoverable = this.hoverable.add( element );
|
433
|
-
this._on( element, {
|
434
|
-
mouseenter: function( event ) {
|
435
|
-
$( event.currentTarget ).addClass( "ui-state-hover" );
|
436
|
-
},
|
437
|
-
mouseleave: function( event ) {
|
438
|
-
$( event.currentTarget ).removeClass( "ui-state-hover" );
|
439
|
-
}
|
440
|
-
});
|
441
|
-
},
|
442
|
-
|
443
|
-
_focusable: function( element ) {
|
444
|
-
this.focusable = this.focusable.add( element );
|
445
|
-
this._on( element, {
|
446
|
-
focusin: function( event ) {
|
447
|
-
$( event.currentTarget ).addClass( "ui-state-focus" );
|
448
|
-
},
|
449
|
-
focusout: function( event ) {
|
450
|
-
$( event.currentTarget ).removeClass( "ui-state-focus" );
|
451
|
-
}
|
452
|
-
});
|
453
|
-
},
|
454
|
-
|
455
|
-
_trigger: function( type, event, data ) {
|
456
|
-
var prop, orig,
|
457
|
-
callback = this.options[ type ];
|
458
|
-
|
459
|
-
data = data || {};
|
460
|
-
event = $.Event( event );
|
461
|
-
event.type = ( type === this.widgetEventPrefix ?
|
462
|
-
type :
|
463
|
-
this.widgetEventPrefix + type ).toLowerCase();
|
464
|
-
// the original event may come from any element
|
465
|
-
// so we need to reset the target on the new event
|
466
|
-
event.target = this.element[ 0 ];
|
467
|
-
|
468
|
-
// copy original event properties over to the new event
|
469
|
-
orig = event.originalEvent;
|
470
|
-
if ( orig ) {
|
471
|
-
for ( prop in orig ) {
|
472
|
-
if ( !( prop in event ) ) {
|
473
|
-
event[ prop ] = orig[ prop ];
|
474
|
-
}
|
475
|
-
}
|
476
|
-
}
|
477
|
-
|
478
|
-
this.element.trigger( event, data );
|
479
|
-
return !( $.isFunction( callback ) &&
|
480
|
-
callback.apply( this.element[0], [ event ].concat( data ) ) === false ||
|
481
|
-
event.isDefaultPrevented() );
|
482
|
-
}
|
483
|
-
};
|
484
|
-
|
485
|
-
$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
|
486
|
-
$.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
|
487
|
-
if ( typeof options === "string" ) {
|
488
|
-
options = { effect: options };
|
489
|
-
}
|
490
|
-
var hasOptions,
|
491
|
-
effectName = !options ?
|
492
|
-
method :
|
493
|
-
options === true || typeof options === "number" ?
|
494
|
-
defaultEffect :
|
495
|
-
options.effect || defaultEffect;
|
496
|
-
options = options || {};
|
497
|
-
if ( typeof options === "number" ) {
|
498
|
-
options = { duration: options };
|
499
|
-
}
|
500
|
-
hasOptions = !$.isEmptyObject( options );
|
501
|
-
options.complete = callback;
|
502
|
-
if ( options.delay ) {
|
503
|
-
element.delay( options.delay );
|
504
|
-
}
|
505
|
-
if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
|
506
|
-
element[ method ]( options );
|
507
|
-
} else if ( effectName !== method && element[ effectName ] ) {
|
508
|
-
element[ effectName ]( options.duration, options.easing, callback );
|
509
|
-
} else {
|
510
|
-
element.queue(function( next ) {
|
511
|
-
$( this )[ method ]();
|
512
|
-
if ( callback ) {
|
513
|
-
callback.call( element[ 0 ] );
|
514
|
-
}
|
515
|
-
next();
|
516
|
-
});
|
517
|
-
}
|
518
|
-
};
|
519
|
-
});
|
520
|
-
|
521
|
-
})( jQuery );
|
@@ -1,42 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI Accordion 1.10.4
|
3
|
-
* http://jqueryui.com
|
4
|
-
*
|
5
|
-
* Copyright 2014 jQuery Foundation and other contributors
|
6
|
-
* Released under the MIT license.
|
7
|
-
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://api.jqueryui.com/accordion/#theming
|
10
|
-
*/
|
11
|
-
/*
|
12
|
-
*= require jquery.ui.core
|
13
|
-
*= require jquery.ui.theme
|
14
|
-
*/
|
15
|
-
.ui-accordion .ui-accordion-header {
|
16
|
-
display: block;
|
17
|
-
cursor: pointer;
|
18
|
-
position: relative;
|
19
|
-
margin-top: 2px;
|
20
|
-
padding: .5em .5em .5em .7em;
|
21
|
-
min-height: 0; /* support: IE7 */
|
22
|
-
}
|
23
|
-
.ui-accordion .ui-accordion-icons {
|
24
|
-
padding-left: 2.2em;
|
25
|
-
}
|
26
|
-
.ui-accordion .ui-accordion-noicons {
|
27
|
-
padding-left: .7em;
|
28
|
-
}
|
29
|
-
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
30
|
-
padding-left: 2.2em;
|
31
|
-
}
|
32
|
-
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
33
|
-
position: absolute;
|
34
|
-
left: .5em;
|
35
|
-
top: 50%;
|
36
|
-
margin-top: -8px;
|
37
|
-
}
|
38
|
-
.ui-accordion .ui-accordion-content {
|
39
|
-
padding: 1em 2.2em;
|
40
|
-
border-top: 0;
|
41
|
-
overflow: auto;
|
42
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI CSS Framework 1.10.4
|
3
|
-
* http://jqueryui.com
|
4
|
-
*
|
5
|
-
* Copyright 2014 jQuery Foundation and other contributors
|
6
|
-
* Released under the MIT license.
|
7
|
-
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://api.jqueryui.com/category/theming/
|
10
|
-
*/
|
11
|
-
/*
|
12
|
-
*= require jquery.ui.base
|
13
|
-
*= require jquery.ui.theme
|
14
|
-
*/
|
@@ -1,21 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI Autocomplete 1.10.4
|
3
|
-
* http://jqueryui.com
|
4
|
-
*
|
5
|
-
* Copyright 2014 jQuery Foundation and other contributors
|
6
|
-
* Released under the MIT license.
|
7
|
-
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://api.jqueryui.com/autocomplete/#theming
|
10
|
-
*/
|
11
|
-
/*
|
12
|
-
*= require jquery.ui.core
|
13
|
-
*= require jquery.ui.menu
|
14
|
-
*= require jquery.ui.theme
|
15
|
-
*/
|
16
|
-
.ui-autocomplete {
|
17
|
-
position: absolute;
|
18
|
-
top: 0;
|
19
|
-
left: 0;
|
20
|
-
cursor: default;
|
21
|
-
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI CSS Framework 1.10.4
|
3
|
-
* http://jqueryui.com
|
4
|
-
*
|
5
|
-
* Copyright 2014 jQuery Foundation and other contributors
|
6
|
-
* Released under the MIT license.
|
7
|
-
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://api.jqueryui.com/category/theming/
|
10
|
-
*/
|
11
|
-
/*
|
12
|
-
*= require jquery.ui.core
|
13
|
-
|
14
|
-
*= require jquery.ui.accordion
|
15
|
-
*= require jquery.ui.autocomplete
|
16
|
-
*= require jquery.ui.button
|
17
|
-
*= require jquery.ui.datepicker
|
18
|
-
*= require jquery.ui.dialog
|
19
|
-
*= require jquery.ui.menu
|
20
|
-
*= require jquery.ui.progressbar
|
21
|
-
*= require jquery.ui.resizable
|
22
|
-
*= require jquery.ui.selectable
|
23
|
-
*= require jquery.ui.slider
|
24
|
-
*= require jquery.ui.spinner
|
25
|
-
*= require jquery.ui.tabs
|
26
|
-
*= require jquery.ui.tooltip
|
27
|
-
*/
|