jquery-ui-rails 5.0.4 → 7.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/.gitmodules +1 -1
- data/.travis.yml +1 -1
- data/History.md +23 -2
- data/README.md +67 -50
- data/Rakefile +58 -29
- data/VERSIONS.md +4 -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/core.js +15 -304
- data/app/assets/javascripts/jquery-ui/data.js +45 -0
- data/app/assets/javascripts/jquery-ui/disable-selection.js +51 -0
- data/app/assets/javascripts/jquery-ui/effect.all.js +15 -16
- data/app/assets/javascripts/jquery-ui/effect.js +565 -891
- 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 +89 -0
- data/app/assets/javascripts/jquery-ui/form-reset-mixin.js +83 -0
- data/app/assets/javascripts/jquery-ui/form.js +25 -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 +40 -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/ie.js +20 -0
- data/app/assets/javascripts/jquery-ui/jquery-patch.js +91 -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 +71 -0
- data/app/assets/javascripts/jquery-ui/plugin.js +49 -0
- data/app/assets/javascripts/jquery-ui/position.js +107 -111
- data/app/assets/javascripts/jquery-ui/safe-active-element.js +46 -0
- data/app/assets/javascripts/jquery-ui/safe-blur.js +27 -0
- 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 +722 -0
- data/app/assets/javascripts/jquery-ui/version.js +20 -0
- data/app/assets/javascripts/jquery-ui/widget.js +359 -163
- data/app/assets/javascripts/jquery-ui/{accordion.js → widgets/accordion.js} +200 -163
- data/app/assets/javascripts/jquery-ui/{autocomplete.js → widgets/autocomplete.js} +153 -106
- data/app/assets/javascripts/jquery-ui/widgets/button.js +454 -0
- data/app/assets/javascripts/jquery-ui/widgets/checkboxradio.js +289 -0
- data/app/assets/javascripts/jquery-ui/widgets/controlgroup.js +304 -0
- data/app/assets/javascripts/jquery-ui/widgets/datepicker.js +2243 -0
- data/app/assets/javascripts/jquery-ui/{dialog.js → widgets/dialog.js} +267 -181
- data/app/assets/javascripts/jquery-ui/{draggable.js → widgets/draggable.js} +430 -294
- data/app/assets/javascripts/jquery-ui/{droppable.js → widgets/droppable.js} +174 -84
- data/app/assets/javascripts/jquery-ui/{menu.js → widgets/menu.js} +228 -158
- data/app/assets/javascripts/jquery-ui/widgets/mouse.js +241 -0
- data/app/assets/javascripts/jquery-ui/{progressbar.js → widgets/progressbar.js} +63 -41
- data/app/assets/javascripts/jquery-ui/widgets/resizable.js +1225 -0
- data/app/assets/javascripts/jquery-ui/widgets/selectable.js +321 -0
- data/app/assets/javascripts/jquery-ui/{selectmenu.js → widgets/selectmenu.js} +259 -177
- data/app/assets/javascripts/jquery-ui/{slider.js → widgets/slider.js} +199 -160
- data/app/assets/javascripts/jquery-ui/widgets/sortable.js +1623 -0
- data/app/assets/javascripts/jquery-ui/{spinner.js → widgets/spinner.js} +184 -114
- data/app/assets/javascripts/jquery-ui/{tabs.js → widgets/tabs.js} +258 -211
- data/app/assets/javascripts/jquery-ui/{tooltip.js → widgets/tooltip.js} +165 -100
- data/app/assets/javascripts/jquery-ui.js +53 -33
- data/app/assets/stylesheets/jquery-ui/accordion.css +1 -15
- data/app/assets/stylesheets/jquery-ui/all.css +1 -1
- data/app/assets/stylesheets/jquery-ui/autocomplete.css +1 -3
- data/app/assets/stylesheets/jquery-ui/base.css +3 -1
- data/app/assets/stylesheets/jquery-ui/button.css +35 -68
- data/app/assets/stylesheets/jquery-ui/checkboxradio.css +37 -0
- data/app/assets/stylesheets/jquery-ui/controlgroup.css +68 -0
- data/app/assets/stylesheets/jquery-ui/core.css +12 -8
- data/app/assets/stylesheets/jquery-ui/datepicker.css +11 -2
- data/app/assets/stylesheets/jquery-ui/dialog.css +38 -11
- data/app/assets/stylesheets/jquery-ui/draggable.css +1 -2
- data/app/assets/stylesheets/jquery-ui/menu.css +7 -7
- data/app/assets/stylesheets/jquery-ui/progressbar.css +2 -3
- data/app/assets/stylesheets/jquery-ui/resizable.css +1 -2
- data/app/assets/stylesheets/jquery-ui/selectable.css +1 -2
- data/app/assets/stylesheets/jquery-ui/selectmenu.css +11 -22
- data/app/assets/stylesheets/jquery-ui/slider.css +2 -3
- data/app/assets/stylesheets/jquery-ui/sortable.css +1 -2
- data/app/assets/stylesheets/jquery-ui/spinner.css +7 -22
- data/app/assets/stylesheets/jquery-ui/tabs.css +1 -2
- data/app/assets/stylesheets/jquery-ui/theme.css.erb +121 -92
- data/app/assets/stylesheets/jquery-ui/tooltip.css +1 -4
- data/lib/jquery/ui/rails/version.rb +2 -2
- metadata +153 -146
- 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/button.js +0 -414
- data/app/assets/javascripts/jquery-ui/datepicker-af.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ar-DZ.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ar.js +0 -38
- data/app/assets/javascripts/jquery-ui/datepicker-az.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-be.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-bg.js +0 -38
- data/app/assets/javascripts/jquery-ui/datepicker-bs.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ca.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-cs.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-cy-GB.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-da.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-de.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-el.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-en-AU.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-en-GB.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-en-NZ.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-eo.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-es.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-et.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-eu.js +0 -36
- data/app/assets/javascripts/jquery-ui/datepicker-fa.js +0 -73
- data/app/assets/javascripts/jquery-ui/datepicker-fi.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-fo.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-fr-CA.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-fr-CH.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-fr.js +0 -39
- data/app/assets/javascripts/jquery-ui/datepicker-gl.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-he.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-hi.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-hr.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-hu.js +0 -36
- data/app/assets/javascripts/jquery-ui/datepicker-hy.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-id.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-is.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-it-CH.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-it.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ja.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ka.js +0 -35
- data/app/assets/javascripts/jquery-ui/datepicker-kk.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-km.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ko.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ky.js +0 -38
- data/app/assets/javascripts/jquery-ui/datepicker-lb.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-lt.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-lv.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-mk.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ml.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ms.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-nb.js +0 -36
- data/app/assets/javascripts/jquery-ui/datepicker-nl-BE.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-nl.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-nn.js +0 -36
- data/app/assets/javascripts/jquery-ui/datepicker-no.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-pl.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-pt-BR.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-pt.js +0 -36
- data/app/assets/javascripts/jquery-ui/datepicker-rm.js +0 -35
- data/app/assets/javascripts/jquery-ui/datepicker-ro.js +0 -40
- data/app/assets/javascripts/jquery-ui/datepicker-ru.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-sk.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-sl.js +0 -38
- data/app/assets/javascripts/jquery-ui/datepicker-sq.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-sr-SR.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-sr.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-sv.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-ta.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-th.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-tj.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-tr.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-uk.js +0 -38
- data/app/assets/javascripts/jquery-ui/datepicker-vi.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-zh-CN.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-zh-HK.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker-zh-TW.js +0 -37
- data/app/assets/javascripts/jquery-ui/datepicker.js +0 -2086
- data/app/assets/javascripts/jquery-ui/effect-blind.js +0 -92
- data/app/assets/javascripts/jquery-ui/effect-bounce.js +0 -125
- data/app/assets/javascripts/jquery-ui/effect-clip.js +0 -79
- data/app/assets/javascripts/jquery-ui/effect-drop.js +0 -77
- data/app/assets/javascripts/jquery-ui/effect-explode.js +0 -109
- data/app/assets/javascripts/jquery-ui/effect-fade.js +0 -42
- data/app/assets/javascripts/jquery-ui/effect-fold.js +0 -88
- data/app/assets/javascripts/jquery-ui/effect-highlight.js +0 -62
- data/app/assets/javascripts/jquery-ui/effect-puff.js +0 -63
- data/app/assets/javascripts/jquery-ui/effect-pulsate.js +0 -75
- data/app/assets/javascripts/jquery-ui/effect-scale.js +0 -92
- data/app/assets/javascripts/jquery-ui/effect-shake.js +0 -86
- data/app/assets/javascripts/jquery-ui/effect-size.js +0 -235
- data/app/assets/javascripts/jquery-ui/effect-slide.js +0 -76
- data/app/assets/javascripts/jquery-ui/effect-transfer.js +0 -59
- data/app/assets/javascripts/jquery-ui/mouse.js +0 -202
- data/app/assets/javascripts/jquery-ui/resizable.js +0 -1183
- data/app/assets/javascripts/jquery-ui/selectable.js +0 -291
- data/app/assets/javascripts/jquery-ui/sortable.js +0 -1308
@@ -1,45 +1,63 @@
|
|
1
|
-
//= require jquery-ui/
|
2
|
-
//= require jquery-ui/widget
|
1
|
+
//= require jquery-ui/keycode
|
3
2
|
//= require jquery-ui/position
|
3
|
+
//= require jquery-ui/unique-id
|
4
|
+
//= require jquery-ui/version
|
5
|
+
//= require jquery-ui/widget
|
4
6
|
|
5
7
|
/*!
|
6
|
-
* jQuery UI Tooltip 1.
|
8
|
+
* jQuery UI Tooltip 1.13.0
|
7
9
|
* http://jqueryui.com
|
8
10
|
*
|
9
11
|
* Copyright jQuery Foundation and other contributors
|
10
12
|
* Released under the MIT license.
|
11
13
|
* http://jquery.org/license
|
12
|
-
*
|
13
|
-
* http://api.jqueryui.com/tooltip/
|
14
14
|
*/
|
15
|
-
|
15
|
+
|
16
|
+
//>>label: Tooltip
|
17
|
+
//>>group: Widgets
|
18
|
+
//>>description: Shows additional information for any element on hover or focus.
|
19
|
+
//>>docs: http://api.jqueryui.com/tooltip/
|
20
|
+
//>>demos: http://jqueryui.com/tooltip/
|
21
|
+
//>>css.structure: ../../themes/base/core.css
|
22
|
+
//>>css.structure: ../../themes/base/tooltip.css
|
23
|
+
//>>css.theme: ../../themes/base/theme.css
|
24
|
+
|
25
|
+
( function( factory ) {
|
26
|
+
"use strict";
|
27
|
+
|
16
28
|
if ( typeof define === "function" && define.amd ) {
|
17
29
|
|
18
30
|
// AMD. Register as an anonymous module.
|
19
|
-
define([
|
31
|
+
define( [
|
20
32
|
"jquery",
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"
|
33
|
+
"../keycode",
|
34
|
+
"../position",
|
35
|
+
"../unique-id",
|
36
|
+
"../version",
|
37
|
+
"../widget"
|
24
38
|
], factory );
|
25
39
|
} else {
|
26
40
|
|
27
41
|
// Browser globals
|
28
42
|
factory( jQuery );
|
29
43
|
}
|
30
|
-
}(function( $ ) {
|
44
|
+
} )( function( $ ) {
|
45
|
+
"use strict";
|
31
46
|
|
32
|
-
|
33
|
-
version: "1.
|
47
|
+
$.widget( "ui.tooltip", {
|
48
|
+
version: "1.13.0",
|
34
49
|
options: {
|
50
|
+
classes: {
|
51
|
+
"ui-tooltip": "ui-corner-all ui-widget-shadow"
|
52
|
+
},
|
35
53
|
content: function() {
|
36
|
-
|
37
|
-
|
38
|
-
var title = $( this ).attr( "title" ) || "";
|
54
|
+
var title = $( this ).attr( "title" );
|
55
|
+
|
39
56
|
// Escape title, since we're going from an attribute to raw HTML
|
40
57
|
return $( "<a>" ).text( title ).html();
|
41
58
|
},
|
42
59
|
hide: true,
|
60
|
+
|
43
61
|
// Disabled elements have inconsistent behavior across browsers (#8661)
|
44
62
|
items: "[title]:not([disabled])",
|
45
63
|
position: {
|
@@ -48,25 +66,24 @@ return $.widget( "ui.tooltip", {
|
|
48
66
|
collision: "flipfit flip"
|
49
67
|
},
|
50
68
|
show: true,
|
51
|
-
tooltipClass: null,
|
52
69
|
track: false,
|
53
70
|
|
54
|
-
//
|
71
|
+
// Callbacks
|
55
72
|
close: null,
|
56
73
|
open: null
|
57
74
|
},
|
58
75
|
|
59
76
|
_addDescribedBy: function( elem, id ) {
|
60
|
-
var describedby = (elem.attr( "aria-describedby" ) || "").split( /\s+/ );
|
77
|
+
var describedby = ( elem.attr( "aria-describedby" ) || "" ).split( /\s+/ );
|
61
78
|
describedby.push( id );
|
62
79
|
elem
|
63
80
|
.data( "ui-tooltip-id", id )
|
64
|
-
.attr( "aria-describedby",
|
81
|
+
.attr( "aria-describedby", String.prototype.trim.call( describedby.join( " " ) ) );
|
65
82
|
},
|
66
83
|
|
67
84
|
_removeDescribedBy: function( elem ) {
|
68
85
|
var id = elem.data( "ui-tooltip-id" ),
|
69
|
-
describedby = (elem.attr( "aria-describedby" ) || "").split( /\s+/ ),
|
86
|
+
describedby = ( elem.attr( "aria-describedby" ) || "" ).split( /\s+/ ),
|
70
87
|
index = $.inArray( id, describedby );
|
71
88
|
|
72
89
|
if ( index !== -1 ) {
|
@@ -74,7 +91,7 @@ return $.widget( "ui.tooltip", {
|
|
74
91
|
}
|
75
92
|
|
76
93
|
elem.removeData( "ui-tooltip-id" );
|
77
|
-
describedby =
|
94
|
+
describedby = String.prototype.trim.call( describedby.join( " " ) );
|
78
95
|
if ( describedby ) {
|
79
96
|
elem.attr( "aria-describedby", describedby );
|
80
97
|
} else {
|
@@ -83,10 +100,10 @@ return $.widget( "ui.tooltip", {
|
|
83
100
|
},
|
84
101
|
|
85
102
|
_create: function() {
|
86
|
-
this._on({
|
103
|
+
this._on( {
|
87
104
|
mouseover: "open",
|
88
105
|
focusin: "open"
|
89
|
-
});
|
106
|
+
} );
|
90
107
|
|
91
108
|
// IDs of generated tooltips, needed for destroy
|
92
109
|
this.tooltips = {};
|
@@ -94,74 +111,75 @@ return $.widget( "ui.tooltip", {
|
|
94
111
|
// IDs of parent tooltips where we removed the title attribute
|
95
112
|
this.parents = {};
|
96
113
|
|
97
|
-
if ( this.options.disabled ) {
|
98
|
-
this._disable();
|
99
|
-
}
|
100
|
-
|
101
114
|
// Append the aria-live region so tooltips announce correctly
|
102
115
|
this.liveRegion = $( "<div>" )
|
103
|
-
.attr({
|
116
|
+
.attr( {
|
104
117
|
role: "log",
|
105
118
|
"aria-live": "assertive",
|
106
119
|
"aria-relevant": "additions"
|
107
|
-
})
|
108
|
-
.addClass( "ui-helper-hidden-accessible" )
|
120
|
+
} )
|
109
121
|
.appendTo( this.document[ 0 ].body );
|
122
|
+
this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );
|
123
|
+
|
124
|
+
this.disabledTitles = $( [] );
|
110
125
|
},
|
111
126
|
|
112
127
|
_setOption: function( key, value ) {
|
113
128
|
var that = this;
|
114
129
|
|
115
|
-
if ( key === "disabled" ) {
|
116
|
-
this[ value ? "_disable" : "_enable" ]();
|
117
|
-
this.options[ key ] = value;
|
118
|
-
// disable element style changes
|
119
|
-
return;
|
120
|
-
}
|
121
|
-
|
122
130
|
this._super( key, value );
|
123
131
|
|
124
132
|
if ( key === "content" ) {
|
125
133
|
$.each( this.tooltips, function( id, tooltipData ) {
|
126
134
|
that._updateContent( tooltipData.element );
|
127
|
-
});
|
135
|
+
} );
|
128
136
|
}
|
129
137
|
},
|
130
138
|
|
139
|
+
_setOptionDisabled: function( value ) {
|
140
|
+
this[ value ? "_disable" : "_enable" ]();
|
141
|
+
},
|
142
|
+
|
131
143
|
_disable: function() {
|
132
144
|
var that = this;
|
133
145
|
|
134
|
-
//
|
146
|
+
// Close open tooltips
|
135
147
|
$.each( this.tooltips, function( id, tooltipData ) {
|
136
148
|
var event = $.Event( "blur" );
|
137
149
|
event.target = event.currentTarget = tooltipData.element[ 0 ];
|
138
150
|
that.close( event, true );
|
139
|
-
});
|
140
|
-
|
141
|
-
//
|
142
|
-
this.
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
151
|
+
} );
|
152
|
+
|
153
|
+
// Remove title attributes to prevent native tooltips
|
154
|
+
this.disabledTitles = this.disabledTitles.add(
|
155
|
+
this.element.find( this.options.items ).addBack()
|
156
|
+
.filter( function() {
|
157
|
+
var element = $( this );
|
158
|
+
if ( element.is( "[title]" ) ) {
|
159
|
+
return element
|
160
|
+
.data( "ui-tooltip-title", element.attr( "title" ) )
|
161
|
+
.removeAttr( "title" );
|
162
|
+
}
|
163
|
+
} )
|
164
|
+
);
|
150
165
|
},
|
151
166
|
|
152
167
|
_enable: function() {
|
168
|
+
|
153
169
|
// restore title attributes
|
154
|
-
this.
|
170
|
+
this.disabledTitles.each( function() {
|
155
171
|
var element = $( this );
|
156
172
|
if ( element.data( "ui-tooltip-title" ) ) {
|
157
173
|
element.attr( "title", element.data( "ui-tooltip-title" ) );
|
158
174
|
}
|
159
|
-
});
|
175
|
+
} );
|
176
|
+
this.disabledTitles = $( [] );
|
160
177
|
},
|
161
178
|
|
162
179
|
open: function( event ) {
|
163
180
|
var that = this,
|
164
181
|
target = $( event ? event.target : this.element )
|
182
|
+
|
165
183
|
// we need closest here due to mouseover bubbling,
|
166
184
|
// but always pointing at the same event target
|
167
185
|
.closest( this.options.items );
|
@@ -177,9 +195,9 @@ return $.widget( "ui.tooltip", {
|
|
177
195
|
|
178
196
|
target.data( "ui-tooltip-open", true );
|
179
197
|
|
180
|
-
//
|
198
|
+
// Kill parent tooltips, custom or native, for hover
|
181
199
|
if ( event && event.type === "mouseover" ) {
|
182
|
-
target.parents().each(function() {
|
200
|
+
target.parents().each( function() {
|
183
201
|
var parent = $( this ),
|
184
202
|
blurEvent;
|
185
203
|
if ( parent.data( "ui-tooltip-open" ) ) {
|
@@ -195,9 +213,10 @@ return $.widget( "ui.tooltip", {
|
|
195
213
|
};
|
196
214
|
parent.attr( "title", "" );
|
197
215
|
}
|
198
|
-
});
|
216
|
+
} );
|
199
217
|
}
|
200
218
|
|
219
|
+
this._registerCloseHandlers( event, target );
|
201
220
|
this._updateContent( target, event );
|
202
221
|
},
|
203
222
|
|
@@ -207,19 +226,23 @@ return $.widget( "ui.tooltip", {
|
|
207
226
|
that = this,
|
208
227
|
eventType = event ? event.type : null;
|
209
228
|
|
210
|
-
if ( typeof contentOption === "string"
|
229
|
+
if ( typeof contentOption === "string" || contentOption.nodeType ||
|
230
|
+
contentOption.jquery ) {
|
211
231
|
return this._open( event, target, contentOption );
|
212
232
|
}
|
213
233
|
|
214
|
-
content = contentOption.call( target[0], function( response ) {
|
215
|
-
|
216
|
-
if ( !target.data( "ui-tooltip-open" ) ) {
|
217
|
-
return;
|
218
|
-
}
|
234
|
+
content = contentOption.call( target[ 0 ], function( response ) {
|
235
|
+
|
219
236
|
// IE may instantly serve a cached response for ajax requests
|
220
237
|
// delay this call to _open so the other call to _open runs first
|
221
|
-
that._delay(function() {
|
222
|
-
|
238
|
+
that._delay( function() {
|
239
|
+
|
240
|
+
// Ignore async response if tooltip was closed already
|
241
|
+
if ( !target.data( "ui-tooltip-open" ) ) {
|
242
|
+
return;
|
243
|
+
}
|
244
|
+
|
245
|
+
// JQuery creates a special event for focusin when it doesn't
|
223
246
|
// exist natively. To improve performance, the native event
|
224
247
|
// object is reused and the type is changed. Therefore, we can't
|
225
248
|
// rely on the type being correct after the event finished
|
@@ -228,15 +251,15 @@ return $.widget( "ui.tooltip", {
|
|
228
251
|
event.type = eventType;
|
229
252
|
}
|
230
253
|
this._open( event, target, response );
|
231
|
-
});
|
232
|
-
});
|
254
|
+
} );
|
255
|
+
} );
|
233
256
|
if ( content ) {
|
234
257
|
this._open( event, target, content );
|
235
258
|
}
|
236
259
|
},
|
237
260
|
|
238
261
|
_open: function( event, target, content ) {
|
239
|
-
var tooltipData, tooltip,
|
262
|
+
var tooltipData, tooltip, delayedShow, a11yContent,
|
240
263
|
positionOption = $.extend( {}, this.options.position );
|
241
264
|
|
242
265
|
if ( !content ) {
|
@@ -251,7 +274,7 @@ return $.widget( "ui.tooltip", {
|
|
251
274
|
return;
|
252
275
|
}
|
253
276
|
|
254
|
-
//
|
277
|
+
// If we have a title, clear it to prevent the native tooltip
|
255
278
|
// we have to check first to avoid defining a title if none exists
|
256
279
|
// (we don't want to cause an element to start matching [title])
|
257
280
|
//
|
@@ -275,13 +298,10 @@ return $.widget( "ui.tooltip", {
|
|
275
298
|
// JAWS announces deletions even when aria-relevant="additions"
|
276
299
|
// Voiceover will sometimes re-read the entire log region's contents from the beginning
|
277
300
|
this.liveRegion.children().hide();
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
a11yContent = content;
|
283
|
-
}
|
284
|
-
$( "<div>" ).html( a11yContent ).appendTo( this.liveRegion );
|
301
|
+
a11yContent = $( "<div>" ).html( tooltip.find( ".ui-tooltip-content" ).html() );
|
302
|
+
a11yContent.removeAttr( "name" ).find( "[name]" ).removeAttr( "name" );
|
303
|
+
a11yContent.removeAttr( "id" ).find( "[id]" ).removeAttr( "id" );
|
304
|
+
a11yContent.appendTo( this.liveRegion );
|
285
305
|
|
286
306
|
function position( event ) {
|
287
307
|
positionOption.of = event;
|
@@ -293,11 +313,12 @@ return $.widget( "ui.tooltip", {
|
|
293
313
|
if ( this.options.track && event && /^mouse/.test( event.type ) ) {
|
294
314
|
this._on( this.document, {
|
295
315
|
mousemove: position
|
296
|
-
});
|
316
|
+
} );
|
317
|
+
|
297
318
|
// trigger once to override element-relative positioning
|
298
319
|
position( event );
|
299
320
|
} else {
|
300
|
-
tooltip.position( $.extend({
|
321
|
+
tooltip.position( $.extend( {
|
301
322
|
of: target
|
302
323
|
}, this.options.position ) );
|
303
324
|
}
|
@@ -305,25 +326,29 @@ return $.widget( "ui.tooltip", {
|
|
305
326
|
tooltip.hide();
|
306
327
|
|
307
328
|
this._show( tooltip, this.options.show );
|
329
|
+
|
308
330
|
// Handle tracking tooltips that are shown with a delay (#8644). As soon
|
309
331
|
// as the tooltip is visible, position the tooltip using the most recent
|
310
332
|
// event.
|
311
|
-
|
312
|
-
|
333
|
+
// Adds the check to add the timers only when both delay and track options are set (#14682)
|
334
|
+
if ( this.options.track && this.options.show && this.options.show.delay ) {
|
335
|
+
delayedShow = this.delayedShow = setInterval( function() {
|
313
336
|
if ( tooltip.is( ":visible" ) ) {
|
314
337
|
position( positionOption.of );
|
315
338
|
clearInterval( delayedShow );
|
316
339
|
}
|
317
|
-
},
|
340
|
+
}, 13 );
|
318
341
|
}
|
319
342
|
|
320
343
|
this._trigger( "open", event, { tooltip: tooltip } );
|
344
|
+
},
|
321
345
|
|
322
|
-
|
346
|
+
_registerCloseHandlers: function( event, target ) {
|
347
|
+
var events = {
|
323
348
|
keyup: function( event ) {
|
324
349
|
if ( event.keyCode === $.ui.keyCode.ESCAPE ) {
|
325
|
-
var fakeEvent = $.Event(event);
|
326
|
-
fakeEvent.currentTarget = target[0];
|
350
|
+
var fakeEvent = $.Event( event );
|
351
|
+
fakeEvent.currentTarget = target[ 0 ];
|
327
352
|
this.close( fakeEvent, true );
|
328
353
|
}
|
329
354
|
}
|
@@ -333,7 +358,7 @@ return $.widget( "ui.tooltip", {
|
|
333
358
|
// tooltips will handle this in destroy.
|
334
359
|
if ( target[ 0 ] !== this.element[ 0 ] ) {
|
335
360
|
events.remove = function() {
|
336
|
-
this._removeTooltip( tooltip );
|
361
|
+
this._removeTooltip( this._find( target ).tooltip );
|
337
362
|
};
|
338
363
|
}
|
339
364
|
|
@@ -354,12 +379,18 @@ return $.widget( "ui.tooltip", {
|
|
354
379
|
|
355
380
|
// The tooltip may already be closed
|
356
381
|
if ( !tooltipData ) {
|
382
|
+
|
383
|
+
// We set ui-tooltip-open immediately upon open (in open()), but only set the
|
384
|
+
// additional data once there's actually content to show (in _open()). So even if the
|
385
|
+
// tooltip doesn't have full data, we always remove ui-tooltip-open in case we're in
|
386
|
+
// the period between open() and _open().
|
387
|
+
target.removeData( "ui-tooltip-open" );
|
357
388
|
return;
|
358
389
|
}
|
359
390
|
|
360
391
|
tooltip = tooltipData.tooltip;
|
361
392
|
|
362
|
-
//
|
393
|
+
// Disabling closes the tooltip, so we need to track when we're closing
|
363
394
|
// to avoid an infinite loop in case the tooltip becomes disabled on close
|
364
395
|
if ( tooltipData.closing ) {
|
365
396
|
return;
|
@@ -368,7 +399,7 @@ return $.widget( "ui.tooltip", {
|
|
368
399
|
// Clear the interval for delayed tracking tooltips
|
369
400
|
clearInterval( this.delayedShow );
|
370
401
|
|
371
|
-
//
|
402
|
+
// Only set title if we had one before (see comment in _open())
|
372
403
|
// If the title attribute has changed since open(), don't restore
|
373
404
|
if ( target.data( "ui-tooltip-title" ) && !target.attr( "title" ) ) {
|
374
405
|
target.attr( "title", target.data( "ui-tooltip-title" ) );
|
@@ -380,7 +411,7 @@ return $.widget( "ui.tooltip", {
|
|
380
411
|
tooltip.stop( true );
|
381
412
|
this._hide( tooltip, this.options.hide, function() {
|
382
413
|
that._removeTooltip( $( this ) );
|
383
|
-
});
|
414
|
+
} );
|
384
415
|
|
385
416
|
target.removeData( "ui-tooltip-open" );
|
386
417
|
this._off( target, "mouseleave focusout keyup" );
|
@@ -395,7 +426,7 @@ return $.widget( "ui.tooltip", {
|
|
395
426
|
$.each( this.parents, function( id, parent ) {
|
396
427
|
$( parent.element ).attr( "title", parent.title );
|
397
428
|
delete that.parents[ id ];
|
398
|
-
});
|
429
|
+
} );
|
399
430
|
}
|
400
431
|
|
401
432
|
tooltipData.closing = true;
|
@@ -406,17 +437,14 @@ return $.widget( "ui.tooltip", {
|
|
406
437
|
},
|
407
438
|
|
408
439
|
_tooltip: function( element ) {
|
409
|
-
var tooltip = $( "<div>" )
|
410
|
-
|
411
|
-
.addClass( "ui-tooltip ui-widget ui-corner-all ui-widget-content " +
|
412
|
-
( this.options.tooltipClass || "" ) ),
|
440
|
+
var tooltip = $( "<div>" ).attr( "role", "tooltip" ),
|
441
|
+
content = $( "<div>" ).appendTo( tooltip ),
|
413
442
|
id = tooltip.uniqueId().attr( "id" );
|
414
443
|
|
415
|
-
|
416
|
-
|
417
|
-
.appendTo( tooltip );
|
444
|
+
this._addClass( content, "ui-tooltip-content" );
|
445
|
+
this._addClass( tooltip, "ui-tooltip", "ui-widget ui-widget-content" );
|
418
446
|
|
419
|
-
tooltip.appendTo( this.
|
447
|
+
tooltip.appendTo( this._appendTo( element ) );
|
420
448
|
|
421
449
|
return this.tooltips[ id ] = {
|
422
450
|
element: element,
|
@@ -430,15 +458,30 @@ return $.widget( "ui.tooltip", {
|
|
430
458
|
},
|
431
459
|
|
432
460
|
_removeTooltip: function( tooltip ) {
|
461
|
+
|
462
|
+
// Clear the interval for delayed tracking tooltips
|
463
|
+
clearInterval( this.delayedShow );
|
464
|
+
|
433
465
|
tooltip.remove();
|
434
466
|
delete this.tooltips[ tooltip.attr( "id" ) ];
|
435
467
|
},
|
436
468
|
|
469
|
+
_appendTo: function( target ) {
|
470
|
+
var element = target.closest( ".ui-front, dialog" );
|
471
|
+
|
472
|
+
if ( !element.length ) {
|
473
|
+
element = this.document[ 0 ].body;
|
474
|
+
}
|
475
|
+
|
476
|
+
return element;
|
477
|
+
},
|
478
|
+
|
437
479
|
_destroy: function() {
|
438
480
|
var that = this;
|
439
481
|
|
440
|
-
//
|
482
|
+
// Close open tooltips
|
441
483
|
$.each( this.tooltips, function( id, tooltipData ) {
|
484
|
+
|
442
485
|
// Delegate to close method to handle common cleanup
|
443
486
|
var event = $.Event( "blur" ),
|
444
487
|
element = tooltipData.element;
|
@@ -451,15 +494,37 @@ return $.widget( "ui.tooltip", {
|
|
451
494
|
|
452
495
|
// Restore the title
|
453
496
|
if ( element.data( "ui-tooltip-title" ) ) {
|
497
|
+
|
454
498
|
// If the title attribute has changed since open(), don't restore
|
455
499
|
if ( !element.attr( "title" ) ) {
|
456
500
|
element.attr( "title", element.data( "ui-tooltip-title" ) );
|
457
501
|
}
|
458
502
|
element.removeData( "ui-tooltip-title" );
|
459
503
|
}
|
460
|
-
});
|
504
|
+
} );
|
461
505
|
this.liveRegion.remove();
|
462
506
|
}
|
463
|
-
});
|
507
|
+
} );
|
508
|
+
|
509
|
+
// DEPRECATED
|
510
|
+
// TODO: Switch return back to widget declaration at top of file when this is removed
|
511
|
+
if ( $.uiBackCompat !== false ) {
|
512
|
+
|
513
|
+
// Backcompat for tooltipClass option
|
514
|
+
$.widget( "ui.tooltip", $.ui.tooltip, {
|
515
|
+
options: {
|
516
|
+
tooltipClass: null
|
517
|
+
},
|
518
|
+
_tooltip: function() {
|
519
|
+
var tooltipData = this._superApply( arguments );
|
520
|
+
if ( this.options.tooltipClass ) {
|
521
|
+
tooltipData.tooltip.addClass( this.options.tooltipClass );
|
522
|
+
}
|
523
|
+
return tooltipData;
|
524
|
+
}
|
525
|
+
} );
|
526
|
+
}
|
527
|
+
|
528
|
+
return $.ui.tooltip;
|
464
529
|
|
465
|
-
})
|
530
|
+
} );
|
@@ -1,37 +1,57 @@
|
|
1
|
-
//= require jquery-ui/accordion
|
2
|
-
//= require jquery-ui/autocomplete
|
3
|
-
//= require jquery-ui/button
|
4
1
|
//= require jquery-ui/core
|
5
|
-
//= require jquery-ui/
|
6
|
-
//= require jquery-ui/
|
7
|
-
//= require jquery-ui/draggable
|
8
|
-
//= require jquery-ui/droppable
|
9
|
-
//= require jquery-ui/effect-blind
|
10
|
-
//= require jquery-ui/effect-bounce
|
11
|
-
//= require jquery-ui/effect-clip
|
12
|
-
//= require jquery-ui/effect-drop
|
13
|
-
//= require jquery-ui/effect-explode
|
14
|
-
//= require jquery-ui/effect-fade
|
15
|
-
//= require jquery-ui/effect-fold
|
16
|
-
//= require jquery-ui/effect-highlight
|
17
|
-
//= require jquery-ui/effect-puff
|
18
|
-
//= require jquery-ui/effect-pulsate
|
19
|
-
//= require jquery-ui/effect-scale
|
20
|
-
//= require jquery-ui/effect-shake
|
21
|
-
//= require jquery-ui/effect-size
|
22
|
-
//= require jquery-ui/effect-slide
|
23
|
-
//= require jquery-ui/effect-transfer
|
2
|
+
//= require jquery-ui/data
|
3
|
+
//= require jquery-ui/disable-selection
|
24
4
|
//= require jquery-ui/effect
|
25
|
-
//= require jquery-ui/
|
26
|
-
//= require jquery-ui/
|
5
|
+
//= require jquery-ui/focusable
|
6
|
+
//= require jquery-ui/form-reset-mixin
|
7
|
+
//= require jquery-ui/form
|
8
|
+
//= require jquery-ui/ie
|
9
|
+
//= require jquery-ui/jquery-patch
|
10
|
+
//= require jquery-ui/jquery-var-for-color
|
11
|
+
//= require jquery-ui/keycode
|
12
|
+
//= require jquery-ui/labels
|
13
|
+
//= require jquery-ui/plugin
|
27
14
|
//= require jquery-ui/position
|
28
|
-
//= require jquery-ui/
|
29
|
-
//= require jquery-ui/
|
30
|
-
//= require jquery-ui/
|
31
|
-
//= require jquery-ui/
|
32
|
-
//= require jquery-ui/
|
33
|
-
//= require jquery-ui/
|
34
|
-
//= require jquery-ui/spinner
|
35
|
-
//= require jquery-ui/tabs
|
36
|
-
//= require jquery-ui/tooltip
|
15
|
+
//= require jquery-ui/safe-active-element
|
16
|
+
//= require jquery-ui/safe-blur
|
17
|
+
//= require jquery-ui/scroll-parent
|
18
|
+
//= require jquery-ui/tabbable
|
19
|
+
//= require jquery-ui/unique-id
|
20
|
+
//= require jquery-ui/version
|
37
21
|
//= require jquery-ui/widget
|
22
|
+
//= require jquery-ui/effects/effect-blind
|
23
|
+
//= require jquery-ui/effects/effect-bounce
|
24
|
+
//= require jquery-ui/effects/effect-clip
|
25
|
+
//= require jquery-ui/effects/effect-drop
|
26
|
+
//= require jquery-ui/effects/effect-explode
|
27
|
+
//= require jquery-ui/effects/effect-fade
|
28
|
+
//= require jquery-ui/effects/effect-fold
|
29
|
+
//= require jquery-ui/effects/effect-highlight
|
30
|
+
//= require jquery-ui/effects/effect-puff
|
31
|
+
//= require jquery-ui/effects/effect-pulsate
|
32
|
+
//= require jquery-ui/effects/effect-scale
|
33
|
+
//= require jquery-ui/effects/effect-shake
|
34
|
+
//= require jquery-ui/effects/effect-size
|
35
|
+
//= require jquery-ui/effects/effect-slide
|
36
|
+
//= require jquery-ui/effects/effect-transfer
|
37
|
+
//= require jquery-ui/widgets/accordion
|
38
|
+
//= require jquery-ui/widgets/autocomplete
|
39
|
+
//= require jquery-ui/widgets/button
|
40
|
+
//= require jquery-ui/widgets/checkboxradio
|
41
|
+
//= require jquery-ui/widgets/controlgroup
|
42
|
+
//= require jquery-ui/widgets/datepicker
|
43
|
+
//= require jquery-ui/widgets/dialog
|
44
|
+
//= require jquery-ui/widgets/draggable
|
45
|
+
//= require jquery-ui/widgets/droppable
|
46
|
+
//= require jquery-ui/widgets/menu
|
47
|
+
//= require jquery-ui/widgets/mouse
|
48
|
+
//= require jquery-ui/widgets/progressbar
|
49
|
+
//= require jquery-ui/widgets/resizable
|
50
|
+
//= require jquery-ui/widgets/selectable
|
51
|
+
//= require jquery-ui/widgets/selectmenu
|
52
|
+
//= require jquery-ui/widgets/slider
|
53
|
+
//= require jquery-ui/widgets/sortable
|
54
|
+
//= require jquery-ui/widgets/spinner
|
55
|
+
//= require jquery-ui/widgets/tabs
|
56
|
+
//= require jquery-ui/widgets/tooltip
|
57
|
+
//= require jquery-ui/vendor/jquery-color/jquery.color
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Accordion 1.
|
2
|
+
* jQuery UI Accordion 1.13.0
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
5
|
* Copyright jQuery Foundation and other contributors
|
@@ -9,7 +9,6 @@
|
|
9
9
|
* http://api.jqueryui.com/accordion/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
|
-
*= require jquery-ui/core
|
13
12
|
*= require jquery-ui/theme
|
14
13
|
*/
|
15
14
|
.ui-accordion .ui-accordion-header {
|
@@ -18,21 +17,8 @@
|
|
18
17
|
position: relative;
|
19
18
|
margin: 2px 0 0 0;
|
20
19
|
padding: .5em .5em .5em .7em;
|
21
|
-
min-height: 0; /* support: IE7 */
|
22
20
|
font-size: 100%;
|
23
21
|
}
|
24
|
-
.ui-accordion .ui-accordion-icons {
|
25
|
-
padding-left: 2.2em;
|
26
|
-
}
|
27
|
-
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
28
|
-
padding-left: 2.2em;
|
29
|
-
}
|
30
|
-
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
31
|
-
position: absolute;
|
32
|
-
left: .5em;
|
33
|
-
top: 50%;
|
34
|
-
margin-top: -8px;
|
35
|
-
}
|
36
22
|
.ui-accordion .ui-accordion-content {
|
37
23
|
padding: 1em 2.2em;
|
38
24
|
border-top: 0;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Autocomplete 1.
|
2
|
+
* jQuery UI Autocomplete 1.13.0
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
5
|
* Copyright jQuery Foundation and other contributors
|
@@ -9,8 +9,6 @@
|
|
9
9
|
* http://api.jqueryui.com/autocomplete/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
|
-
*= require jquery-ui/core
|
13
|
-
*= require jquery-ui/menu
|
14
12
|
*= require jquery-ui/theme
|
15
13
|
*/
|
16
14
|
.ui-autocomplete {
|