ext_yarn 0.1.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/.gitignore +125 -0
- data/.ruby-version +1 -0
- data/Gemfile +21 -0
- data/Gemfile.lock +78 -0
- data/MIT-LICENSE +20 -0
- data/README.md +3 -0
- data/bin/yarn +12 -0
- data/ext_yarn.gemspec +23 -0
- data/lib/ext_yarn/engine.rb +21 -0
- data/lib/ext_yarn/version.rb +3 -0
- data/lib/ext_yarn.rb +5 -0
- data/node_modules/.yarn-integrity +64 -0
- data/node_modules/bootstrap-sass/LICENSE +22 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/affix.js +162 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js +94 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/button.js +125 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/carousel.js +237 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/collapse.js +212 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js +165 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/modal.js +339 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/popover.js +108 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js +172 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tab.js +155 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js +520 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/transition.js +59 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap-sprockets.js +12 -0
- data/node_modules/bootstrap-sass/assets/javascripts/bootstrap.js +2377 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap.scss +56 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_badges.scss +68 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_buttons.scss +168 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_carousel.scss +270 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_close.scss +36 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_forms.scss +617 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_input-groups.scss +171 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_jumbotron.scss +54 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_list-group.scss +130 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_media.scss +66 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_mixins.scss +40 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_modals.scss +150 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss +662 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navs.scss +242 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_normalize.scss +424 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pagination.scss +89 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_panels.scss +271 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_popovers.scss +131 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_print.scss +101 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_theme.scss +291 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_utilities.scss +55 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss +874 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_buttons.scss +65 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/node_modules/bootstrap-sass/package.json +44 -0
- data/node_modules/bootswatch/cerulean/_bootswatch.scss +131 -0
- data/node_modules/bootswatch/cerulean/_variables.scss +870 -0
- data/node_modules/bootswatch/cosmo/_bootswatch.scss +262 -0
- data/node_modules/bootswatch/cosmo/_variables.scss +870 -0
- data/node_modules/bootswatch/cyborg/_bootswatch.scss +243 -0
- data/node_modules/bootswatch/cyborg/_variables.scss +870 -0
- data/node_modules/bootswatch/darkly/_bootswatch.scss +351 -0
- data/node_modules/bootswatch/darkly/_variables.scss +870 -0
- data/node_modules/bootswatch/flatly/_bootswatch.scss +330 -0
- data/node_modules/bootswatch/flatly/_variables.scss +870 -0
- data/node_modules/bootswatch/journal/_bootswatch.scss +145 -0
- data/node_modules/bootswatch/journal/_variables.scss +870 -0
- data/node_modules/bootswatch/lumen/_bootswatch.scss +523 -0
- data/node_modules/bootswatch/lumen/_variables.scss +870 -0
- data/node_modules/bootswatch/package.json +26 -0
- data/node_modules/bootswatch/paper/_bootswatch.scss +620 -0
- data/node_modules/bootswatch/paper/_variables.scss +870 -0
- data/node_modules/bootswatch/readable/_bootswatch.scss +183 -0
- data/node_modules/bootswatch/readable/_variables.scss +870 -0
- data/node_modules/bootswatch/sandstone/_bootswatch.scss +196 -0
- data/node_modules/bootswatch/sandstone/_variables.scss +870 -0
- data/node_modules/bootswatch/simplex/_bootswatch.scss +170 -0
- data/node_modules/bootswatch/simplex/_variables.scss +870 -0
- data/node_modules/bootswatch/slate/_bootswatch.scss +448 -0
- data/node_modules/bootswatch/slate/_variables.scss +870 -0
- data/node_modules/bootswatch/spacelab/_bootswatch.scss +142 -0
- data/node_modules/bootswatch/spacelab/_variables.scss +870 -0
- data/node_modules/bootswatch/superhero/_bootswatch.scss +360 -0
- data/node_modules/bootswatch/superhero/_variables.scss +870 -0
- data/node_modules/bootswatch/united/_bootswatch.scss +56 -0
- data/node_modules/bootswatch/united/_variables.scss +870 -0
- data/node_modules/bootswatch/yeti/_bootswatch.scss +445 -0
- data/node_modules/bootswatch/yeti/_variables.scss +870 -0
- data/node_modules/chart.js/dist/Chart.bundle.js +18919 -0
- data/node_modules/chart.js/dist/Chart.js +14384 -0
- data/node_modules/chart.js/package.json +57 -0
- data/node_modules/chartkick/chartkick.js +1853 -0
- data/node_modules/chartkick/package.json +25 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/package.json +51 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js +2636 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/_bootstrap-datetimepicker.scss +344 -0
- data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/bootstrap-datetimepicker-build.scss +16 -0
- data/node_modules/file-saver/FileSaver.js +188 -0
- data/node_modules/file-saver/package.json +28 -0
- data/node_modules/font-awesome-sass/LICENSE.txt +22 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.svg +2671 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
- data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff2 +0 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-compass.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-sprockets.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome.scss +18 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_animated.scss +34 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_bordered-pulled.scss +25 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_core.scss +12 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss +6 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_icons.scss +789 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_larger.scss +13 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_list.scss +19 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_mixins.scss +60 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_path.scss +14 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_rotated-flipped.scss +20 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_screen-reader.scss +5 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_stacked.scss +20 -0
- data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_variables.scss +802 -0
- data/node_modules/font-awesome-sass/package.json +19 -0
- data/node_modules/jquery/dist/jquery.js +10253 -0
- data/node_modules/jquery/dist/jquery.slim.js +8160 -0
- data/node_modules/jquery/package.json +97 -0
- data/node_modules/jquery-pjax/jquery.pjax.js +903 -0
- data/node_modules/jquery-pjax/package.json +18 -0
- data/node_modules/jquery-ui/package.json +74 -0
- data/node_modules/jquery-ui/themes/base/accordion.css +23 -0
- data/node_modules/jquery-ui/themes/base/all.css +12 -0
- data/node_modules/jquery-ui/themes/base/autocomplete.css +16 -0
- data/node_modules/jquery-ui/themes/base/base.css +30 -0
- data/node_modules/jquery-ui/themes/base/button.css +82 -0
- data/node_modules/jquery-ui/themes/base/checkboxradio.css +34 -0
- data/node_modules/jquery-ui/themes/base/controlgroup.css +65 -0
- data/node_modules/jquery-ui/themes/base/core.css +97 -0
- data/node_modules/jquery-ui/themes/base/datepicker.css +185 -0
- data/node_modules/jquery-ui/themes/base/dialog.css +101 -0
- data/node_modules/jquery-ui/themes/base/draggable.css +12 -0
- data/node_modules/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_444444_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_555555_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_777620_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_777777_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png +0 -0
- data/node_modules/jquery-ui/themes/base/menu.css +64 -0
- data/node_modules/jquery-ui/themes/base/progressbar.css +28 -0
- data/node_modules/jquery-ui/themes/base/resizable.css +78 -0
- data/node_modules/jquery-ui/themes/base/selectable.css +17 -0
- data/node_modules/jquery-ui/themes/base/selectmenu.css +50 -0
- data/node_modules/jquery-ui/themes/base/slider.css +75 -0
- data/node_modules/jquery-ui/themes/base/sortable.css +12 -0
- data/node_modules/jquery-ui/themes/base/spinner.css +52 -0
- data/node_modules/jquery-ui/themes/base/tabs.css +51 -0
- data/node_modules/jquery-ui/themes/base/theme.css +443 -0
- data/node_modules/jquery-ui/themes/base/tooltip.css +19 -0
- data/node_modules/jquery-ui/ui/core.js +21 -0
- data/node_modules/jquery-ui/ui/data.js +39 -0
- data/node_modules/jquery-ui/ui/disable-selection.js +46 -0
- data/node_modules/jquery-ui/ui/effect.js +1635 -0
- data/node_modules/jquery-ui/ui/effects/effect-blind.js +70 -0
- data/node_modules/jquery-ui/ui/effects/effect-bounce.js +110 -0
- data/node_modules/jquery-ui/ui/effects/effect-clip.js +65 -0
- data/node_modules/jquery-ui/ui/effects/effect-drop.js +69 -0
- data/node_modules/jquery-ui/ui/effects/effect-explode.js +111 -0
- data/node_modules/jquery-ui/ui/effects/effect-fade.js +47 -0
- data/node_modules/jquery-ui/ui/effects/effect-fold.js +89 -0
- data/node_modules/jquery-ui/ui/effects/effect-highlight.js +57 -0
- data/node_modules/jquery-ui/ui/effects/effect-puff.js +42 -0
- data/node_modules/jquery-ui/ui/effects/effect-pulsate.js +64 -0
- data/node_modules/jquery-ui/ui/effects/effect-scale.js +56 -0
- data/node_modules/jquery-ui/ui/effects/effect-shake.js +74 -0
- data/node_modules/jquery-ui/ui/effects/effect-size.js +191 -0
- data/node_modules/jquery-ui/ui/effects/effect-slide.js +76 -0
- data/node_modules/jquery-ui/ui/effects/effect-transfer.js +40 -0
- data/node_modules/jquery-ui/ui/escape-selector.js +21 -0
- data/node_modules/jquery-ui/ui/focusable.js +84 -0
- data/node_modules/jquery-ui/ui/form-reset-mixin.js +77 -0
- data/node_modules/jquery-ui/ui/form.js +20 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-af.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ar-DZ.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ar.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-az.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-be.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-bg.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-bs.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ca.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-cs.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-cy-GB.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-da.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-de.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-el.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-AU.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-GB.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-en-NZ.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-eo.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-es.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-et.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-eu.js +36 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fa.js +73 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fo.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CA.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CH.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-fr.js +39 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-gl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-he.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hu.js +36 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-hy.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-id.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-is.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-it-CH.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-it.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ja.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ka.js +48 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-kk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-km.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ko.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ky.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lb.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lt.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-lv.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-mk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ml.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ms.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nb.js +49 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nl-BE.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-nn.js +49 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-no.js +50 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pl.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pt-BR.js +45 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-pt.js +44 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-rm.js +61 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ro.js +40 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ru.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sk.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sl.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sq.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sr-SR.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-sv.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-ta.js +53 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-th.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-tj.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-tr.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-uk.js +38 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-vi.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-CN.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-HK.js +37 -0
- data/node_modules/jquery-ui/ui/i18n/datepicker-zh-TW.js +37 -0
- data/node_modules/jquery-ui/ui/ie.js +15 -0
- data/node_modules/jquery-ui/ui/jquery-1-7.js +89 -0
- data/node_modules/jquery-ui/ui/keycode.js +45 -0
- data/node_modules/jquery-ui/ui/labels.js +62 -0
- data/node_modules/jquery-ui/ui/plugin.js +44 -0
- data/node_modules/jquery-ui/ui/position.js +498 -0
- data/node_modules/jquery-ui/ui/safe-active-element.js +40 -0
- data/node_modules/jquery-ui/ui/safe-blur.js +21 -0
- data/node_modules/jquery-ui/ui/scroll-parent.js +45 -0
- data/node_modules/jquery-ui/ui/tabbable.js +35 -0
- data/node_modules/jquery-ui/ui/unique-id.js +49 -0
- data/node_modules/jquery-ui/ui/version.js +17 -0
- data/node_modules/jquery-ui/ui/widget.js +733 -0
- data/node_modules/jquery-ui/ui/widgets/accordion.js +613 -0
- data/node_modules/jquery-ui/ui/widgets/autocomplete.js +682 -0
- data/node_modules/jquery-ui/ui/widgets/button.js +386 -0
- data/node_modules/jquery-ui/ui/widgets/checkboxradio.js +286 -0
- data/node_modules/jquery-ui/ui/widgets/controlgroup.js +298 -0
- data/node_modules/jquery-ui/ui/widgets/datepicker.js +2120 -0
- data/node_modules/jquery-ui/ui/widgets/dialog.js +940 -0
- data/node_modules/jquery-ui/ui/widgets/draggable.js +1250 -0
- data/node_modules/jquery-ui/ui/widgets/droppable.js +497 -0
- data/node_modules/jquery-ui/ui/widgets/menu.js +673 -0
- data/node_modules/jquery-ui/ui/widgets/mouse.js +226 -0
- data/node_modules/jquery-ui/ui/widgets/progressbar.js +178 -0
- data/node_modules/jquery-ui/ui/widgets/resizable.js +1201 -0
- data/node_modules/jquery-ui/ui/widgets/selectable.js +310 -0
- data/node_modules/jquery-ui/ui/widgets/selectmenu.js +687 -0
- data/node_modules/jquery-ui/ui/widgets/slider.js +752 -0
- data/node_modules/jquery-ui/ui/widgets/sortable.js +1554 -0
- data/node_modules/jquery-ui/ui/widgets/spinner.js +575 -0
- data/node_modules/jquery-ui/ui/widgets/tabs.js +924 -0
- data/node_modules/jquery-ui/ui/widgets/tooltip.js +520 -0
- data/node_modules/jquery-ujs/package.json +26 -0
- data/node_modules/jquery-ujs/src/rails.js +555 -0
- data/node_modules/js-cookie/package.json +49 -0
- data/node_modules/js-cookie/src/js.cookie.js +165 -0
- data/node_modules/jstz/dist/jstz.js +1428 -0
- data/node_modules/jstz/package.json +57 -0
- data/node_modules/lodash/core.js +3836 -0
- data/node_modules/lodash/lodash.js +17084 -0
- data/node_modules/lodash/package.json +17 -0
- data/node_modules/moment/locale/af.js +74 -0
- data/node_modules/moment/locale/ar-dz.js +60 -0
- data/node_modules/moment/locale/ar-kw.js +60 -0
- data/node_modules/moment/locale/ar-ly.js +127 -0
- data/node_modules/moment/locale/ar-ma.js +61 -0
- data/node_modules/moment/locale/ar-sa.js +106 -0
- data/node_modules/moment/locale/ar-tn.js +60 -0
- data/node_modules/moment/locale/ar.js +143 -0
- data/node_modules/moment/locale/az.js +106 -0
- data/node_modules/moment/locale/be.js +135 -0
- data/node_modules/moment/locale/bg.js +91 -0
- data/node_modules/moment/locale/bm.js +60 -0
- data/node_modules/moment/locale/bn.js +120 -0
- data/node_modules/moment/locale/bo.js +120 -0
- data/node_modules/moment/locale/br.js +109 -0
- data/node_modules/moment/locale/bs.js +153 -0
- data/node_modules/moment/locale/ca.js +89 -0
- data/node_modules/moment/locale/cs.js +180 -0
- data/node_modules/moment/locale/cv.js +64 -0
- data/node_modules/moment/locale/cy.js +82 -0
- data/node_modules/moment/locale/da.js +61 -0
- data/node_modules/moment/locale/de-at.js +80 -0
- data/node_modules/moment/locale/de-ch.js +79 -0
- data/node_modules/moment/locale/de.js +79 -0
- data/node_modules/moment/locale/dv.js +101 -0
- data/node_modules/moment/locale/el.js +101 -0
- data/node_modules/moment/locale/en-au.js +68 -0
- data/node_modules/moment/locale/en-ca.js +64 -0
- data/node_modules/moment/locale/en-gb.js +68 -0
- data/node_modules/moment/locale/en-ie.js +68 -0
- data/node_modules/moment/locale/en-nz.js +68 -0
- data/node_modules/moment/locale/eo.js +74 -0
- data/node_modules/moment/locale/es-do.js +92 -0
- data/node_modules/moment/locale/es-us.js +84 -0
- data/node_modules/moment/locale/es.js +93 -0
- data/node_modules/moment/locale/et.js +82 -0
- data/node_modules/moment/locale/eu.js +67 -0
- data/node_modules/moment/locale/fa.js +108 -0
- data/node_modules/moment/locale/fi.js +110 -0
- data/node_modules/moment/locale/fo.js +61 -0
- data/node_modules/moment/locale/fr-ca.js +75 -0
- data/node_modules/moment/locale/fr-ch.js +79 -0
- data/node_modules/moment/locale/fr.js +84 -0
- data/node_modules/moment/locale/fy.js +76 -0
- data/node_modules/moment/locale/gd.js +77 -0
- data/node_modules/moment/locale/gl.js +78 -0
- data/node_modules/moment/locale/gom-latn.js +124 -0
- data/node_modules/moment/locale/gu.js +125 -0
- data/node_modules/moment/locale/he.js +100 -0
- data/node_modules/moment/locale/hi.js +125 -0
- data/node_modules/moment/locale/hr.js +155 -0
- data/node_modules/moment/locale/hu.js +111 -0
- data/node_modules/moment/locale/hy-am.js +96 -0
- data/node_modules/moment/locale/id.js +84 -0
- data/node_modules/moment/locale/is.js +133 -0
- data/node_modules/moment/locale/it.js +71 -0
- data/node_modules/moment/locale/ja.js +81 -0
- data/node_modules/moment/locale/jv.js +84 -0
- data/node_modules/moment/locale/ka.js +90 -0
- data/node_modules/moment/locale/kk.js +88 -0
- data/node_modules/moment/locale/km.js +59 -0
- data/node_modules/moment/locale/kn.js +127 -0
- data/node_modules/moment/locale/ko.js +83 -0
- data/node_modules/moment/locale/ky.js +89 -0
- data/node_modules/moment/locale/lb.js +138 -0
- data/node_modules/moment/locale/lo.js +71 -0
- data/node_modules/moment/locale/lt.js +119 -0
- data/node_modules/moment/locale/lv.js +99 -0
- data/node_modules/moment/locale/me.js +113 -0
- data/node_modules/moment/locale/mi.js +65 -0
- data/node_modules/moment/locale/mk.js +91 -0
- data/node_modules/moment/locale/ml.js +82 -0
- data/node_modules/moment/locale/mr.js +162 -0
- data/node_modules/moment/locale/ms-my.js +84 -0
- data/node_modules/moment/locale/ms.js +83 -0
- data/node_modules/moment/locale/mt.js +61 -0
- data/node_modules/moment/locale/my.js +97 -0
- data/node_modules/moment/locale/nb.js +64 -0
- data/node_modules/moment/locale/ne.js +124 -0
- data/node_modules/moment/locale/nl-be.js +89 -0
- data/node_modules/moment/locale/nl.js +89 -0
- data/node_modules/moment/locale/nn.js +61 -0
- data/node_modules/moment/locale/pa-in.js +125 -0
- data/node_modules/moment/locale/pl.js +127 -0
- data/node_modules/moment/locale/pt-br.js +62 -0
- data/node_modules/moment/locale/pt.js +66 -0
- data/node_modules/moment/locale/ro.js +77 -0
- data/node_modules/moment/locale/ru.js +185 -0
- data/node_modules/moment/locale/sd.js +99 -0
- data/node_modules/moment/locale/se.js +62 -0
- data/node_modules/moment/locale/si.js +72 -0
- data/node_modules/moment/locale/sk.js +158 -0
- data/node_modules/moment/locale/sl.js +174 -0
- data/node_modules/moment/locale/sq.js +71 -0
- data/node_modules/moment/locale/sr-cyrl.js +112 -0
- data/node_modules/moment/locale/sr.js +112 -0
- data/node_modules/moment/locale/ss.js +90 -0
- data/node_modules/moment/locale/sv.js +70 -0
- data/node_modules/moment/locale/sw.js +60 -0
- data/node_modules/moment/locale/ta.js +131 -0
- data/node_modules/moment/locale/te.js +90 -0
- data/node_modules/moment/locale/tet.js +69 -0
- data/node_modules/moment/locale/th.js +68 -0
- data/node_modules/moment/locale/tl-ph.js +63 -0
- data/node_modules/moment/locale/tlh.js +123 -0
- data/node_modules/moment/locale/tr.js +91 -0
- data/node_modules/moment/locale/tzl.js +93 -0
- data/node_modules/moment/locale/tzm-latn.js +59 -0
- data/node_modules/moment/locale/tzm.js +59 -0
- data/node_modules/moment/locale/uk.js +153 -0
- data/node_modules/moment/locale/ur.js +100 -0
- data/node_modules/moment/locale/uz-latn.js +59 -0
- data/node_modules/moment/locale/uz.js +59 -0
- data/node_modules/moment/locale/vi.js +80 -0
- data/node_modules/moment/locale/x-pseudo.js +69 -0
- data/node_modules/moment/locale/yo.js +61 -0
- data/node_modules/moment/locale/zh-cn.js +112 -0
- data/node_modules/moment/locale/zh-hk.js +106 -0
- data/node_modules/moment/locale/zh-tw.js +105 -0
- data/node_modules/moment/min/locales.js +9769 -0
- data/node_modules/moment/min/moment-with-locales.js +14289 -0
- data/node_modules/moment/moment.js +4535 -0
- data/node_modules/moment/package.json +99 -0
- data/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.js +1204 -0
- data/node_modules/moment-timezone/builds/moment-timezone-with-data.js +1204 -0
- data/node_modules/moment-timezone/moment-timezone-utils.js +316 -0
- data/node_modules/moment-timezone/moment-timezone.js +605 -0
- data/node_modules/moment-timezone/package.json +50 -0
- data/node_modules/nprogress/nprogress.css +74 -0
- data/node_modules/nprogress/nprogress.js +480 -0
- data/node_modules/nprogress/package.json +47 -0
- data/node_modules/nprogress/support/extras.css +4 -0
- data/node_modules/roboto-fontface/css/mixins.scss +36 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss +12 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface.scss +6 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-bold.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-light.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-regular.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-thin.scss +3 -0
- data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface.scss +4 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.svg +10968 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.svg +11086 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.svg +11010 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.svg +11096 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.svg +10564 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.svg +10646 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.svg +10999 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.svg +11100 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.svg +10520 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.svg +10629 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.svg +10617 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.svg +10726 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg +643 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.svg +644 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg +644 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.svg +679 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff2 +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.eot +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.svg +678 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.ttf +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff +0 -0
- data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff2 +0 -0
- data/node_modules/roboto-fontface/package.json +28 -0
- data/node_modules/signature_pad/dist/signature_pad.js +610 -0
- data/node_modules/signature_pad/package.json +41 -0
- data/package.json +25 -0
- data/yarn.lock +126 -0
- metadata +708 -0
|
@@ -0,0 +1,924 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* jQuery UI Tabs 1.12.1
|
|
3
|
+
* http://jqueryui.com
|
|
4
|
+
*
|
|
5
|
+
* Copyright jQuery Foundation and other contributors
|
|
6
|
+
* Released under the MIT license.
|
|
7
|
+
* http://jquery.org/license
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
//>>label: Tabs
|
|
11
|
+
//>>group: Widgets
|
|
12
|
+
//>>description: Transforms a set of container elements into a tab structure.
|
|
13
|
+
//>>docs: http://api.jqueryui.com/tabs/
|
|
14
|
+
//>>demos: http://jqueryui.com/tabs/
|
|
15
|
+
//>>css.structure: ../../themes/base/core.css
|
|
16
|
+
//>>css.structure: ../../themes/base/tabs.css
|
|
17
|
+
//>>css.theme: ../../themes/base/theme.css
|
|
18
|
+
|
|
19
|
+
( function( factory ) {
|
|
20
|
+
if ( typeof define === "function" && define.amd ) {
|
|
21
|
+
|
|
22
|
+
// AMD. Register as an anonymous module.
|
|
23
|
+
define( [
|
|
24
|
+
"jquery",
|
|
25
|
+
"../escape-selector",
|
|
26
|
+
"../keycode",
|
|
27
|
+
"../safe-active-element",
|
|
28
|
+
"../unique-id",
|
|
29
|
+
"../version",
|
|
30
|
+
"../widget"
|
|
31
|
+
], factory );
|
|
32
|
+
} else {
|
|
33
|
+
|
|
34
|
+
// Browser globals
|
|
35
|
+
factory( jQuery );
|
|
36
|
+
}
|
|
37
|
+
}( function( $ ) {
|
|
38
|
+
|
|
39
|
+
$.widget( "ui.tabs", {
|
|
40
|
+
version: "1.12.1",
|
|
41
|
+
delay: 300,
|
|
42
|
+
options: {
|
|
43
|
+
active: null,
|
|
44
|
+
classes: {
|
|
45
|
+
"ui-tabs": "ui-corner-all",
|
|
46
|
+
"ui-tabs-nav": "ui-corner-all",
|
|
47
|
+
"ui-tabs-panel": "ui-corner-bottom",
|
|
48
|
+
"ui-tabs-tab": "ui-corner-top"
|
|
49
|
+
},
|
|
50
|
+
collapsible: false,
|
|
51
|
+
event: "click",
|
|
52
|
+
heightStyle: "content",
|
|
53
|
+
hide: null,
|
|
54
|
+
show: null,
|
|
55
|
+
|
|
56
|
+
// Callbacks
|
|
57
|
+
activate: null,
|
|
58
|
+
beforeActivate: null,
|
|
59
|
+
beforeLoad: null,
|
|
60
|
+
load: null
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
_isLocal: ( function() {
|
|
64
|
+
var rhash = /#.*$/;
|
|
65
|
+
|
|
66
|
+
return function( anchor ) {
|
|
67
|
+
var anchorUrl, locationUrl;
|
|
68
|
+
|
|
69
|
+
anchorUrl = anchor.href.replace( rhash, "" );
|
|
70
|
+
locationUrl = location.href.replace( rhash, "" );
|
|
71
|
+
|
|
72
|
+
// Decoding may throw an error if the URL isn't UTF-8 (#9518)
|
|
73
|
+
try {
|
|
74
|
+
anchorUrl = decodeURIComponent( anchorUrl );
|
|
75
|
+
} catch ( error ) {}
|
|
76
|
+
try {
|
|
77
|
+
locationUrl = decodeURIComponent( locationUrl );
|
|
78
|
+
} catch ( error ) {}
|
|
79
|
+
|
|
80
|
+
return anchor.hash.length > 1 && anchorUrl === locationUrl;
|
|
81
|
+
};
|
|
82
|
+
} )(),
|
|
83
|
+
|
|
84
|
+
_create: function() {
|
|
85
|
+
var that = this,
|
|
86
|
+
options = this.options;
|
|
87
|
+
|
|
88
|
+
this.running = false;
|
|
89
|
+
|
|
90
|
+
this._addClass( "ui-tabs", "ui-widget ui-widget-content" );
|
|
91
|
+
this._toggleClass( "ui-tabs-collapsible", null, options.collapsible );
|
|
92
|
+
|
|
93
|
+
this._processTabs();
|
|
94
|
+
options.active = this._initialActive();
|
|
95
|
+
|
|
96
|
+
// Take disabling tabs via class attribute from HTML
|
|
97
|
+
// into account and update option properly.
|
|
98
|
+
if ( $.isArray( options.disabled ) ) {
|
|
99
|
+
options.disabled = $.unique( options.disabled.concat(
|
|
100
|
+
$.map( this.tabs.filter( ".ui-state-disabled" ), function( li ) {
|
|
101
|
+
return that.tabs.index( li );
|
|
102
|
+
} )
|
|
103
|
+
) ).sort();
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// Check for length avoids error when initializing empty list
|
|
107
|
+
if ( this.options.active !== false && this.anchors.length ) {
|
|
108
|
+
this.active = this._findActive( options.active );
|
|
109
|
+
} else {
|
|
110
|
+
this.active = $();
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
this._refresh();
|
|
114
|
+
|
|
115
|
+
if ( this.active.length ) {
|
|
116
|
+
this.load( options.active );
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
|
|
120
|
+
_initialActive: function() {
|
|
121
|
+
var active = this.options.active,
|
|
122
|
+
collapsible = this.options.collapsible,
|
|
123
|
+
locationHash = location.hash.substring( 1 );
|
|
124
|
+
|
|
125
|
+
if ( active === null ) {
|
|
126
|
+
|
|
127
|
+
// check the fragment identifier in the URL
|
|
128
|
+
if ( locationHash ) {
|
|
129
|
+
this.tabs.each( function( i, tab ) {
|
|
130
|
+
if ( $( tab ).attr( "aria-controls" ) === locationHash ) {
|
|
131
|
+
active = i;
|
|
132
|
+
return false;
|
|
133
|
+
}
|
|
134
|
+
} );
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// Check for a tab marked active via a class
|
|
138
|
+
if ( active === null ) {
|
|
139
|
+
active = this.tabs.index( this.tabs.filter( ".ui-tabs-active" ) );
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// No active tab, set to false
|
|
143
|
+
if ( active === null || active === -1 ) {
|
|
144
|
+
active = this.tabs.length ? 0 : false;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// Handle numbers: negative, out of range
|
|
149
|
+
if ( active !== false ) {
|
|
150
|
+
active = this.tabs.index( this.tabs.eq( active ) );
|
|
151
|
+
if ( active === -1 ) {
|
|
152
|
+
active = collapsible ? false : 0;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// Don't allow collapsible: false and active: false
|
|
157
|
+
if ( !collapsible && active === false && this.anchors.length ) {
|
|
158
|
+
active = 0;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return active;
|
|
162
|
+
},
|
|
163
|
+
|
|
164
|
+
_getCreateEventData: function() {
|
|
165
|
+
return {
|
|
166
|
+
tab: this.active,
|
|
167
|
+
panel: !this.active.length ? $() : this._getPanelForTab( this.active )
|
|
168
|
+
};
|
|
169
|
+
},
|
|
170
|
+
|
|
171
|
+
_tabKeydown: function( event ) {
|
|
172
|
+
var focusedTab = $( $.ui.safeActiveElement( this.document[ 0 ] ) ).closest( "li" ),
|
|
173
|
+
selectedIndex = this.tabs.index( focusedTab ),
|
|
174
|
+
goingForward = true;
|
|
175
|
+
|
|
176
|
+
if ( this._handlePageNav( event ) ) {
|
|
177
|
+
return;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
switch ( event.keyCode ) {
|
|
181
|
+
case $.ui.keyCode.RIGHT:
|
|
182
|
+
case $.ui.keyCode.DOWN:
|
|
183
|
+
selectedIndex++;
|
|
184
|
+
break;
|
|
185
|
+
case $.ui.keyCode.UP:
|
|
186
|
+
case $.ui.keyCode.LEFT:
|
|
187
|
+
goingForward = false;
|
|
188
|
+
selectedIndex--;
|
|
189
|
+
break;
|
|
190
|
+
case $.ui.keyCode.END:
|
|
191
|
+
selectedIndex = this.anchors.length - 1;
|
|
192
|
+
break;
|
|
193
|
+
case $.ui.keyCode.HOME:
|
|
194
|
+
selectedIndex = 0;
|
|
195
|
+
break;
|
|
196
|
+
case $.ui.keyCode.SPACE:
|
|
197
|
+
|
|
198
|
+
// Activate only, no collapsing
|
|
199
|
+
event.preventDefault();
|
|
200
|
+
clearTimeout( this.activating );
|
|
201
|
+
this._activate( selectedIndex );
|
|
202
|
+
return;
|
|
203
|
+
case $.ui.keyCode.ENTER:
|
|
204
|
+
|
|
205
|
+
// Toggle (cancel delayed activation, allow collapsing)
|
|
206
|
+
event.preventDefault();
|
|
207
|
+
clearTimeout( this.activating );
|
|
208
|
+
|
|
209
|
+
// Determine if we should collapse or activate
|
|
210
|
+
this._activate( selectedIndex === this.options.active ? false : selectedIndex );
|
|
211
|
+
return;
|
|
212
|
+
default:
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
// Focus the appropriate tab, based on which key was pressed
|
|
217
|
+
event.preventDefault();
|
|
218
|
+
clearTimeout( this.activating );
|
|
219
|
+
selectedIndex = this._focusNextTab( selectedIndex, goingForward );
|
|
220
|
+
|
|
221
|
+
// Navigating with control/command key will prevent automatic activation
|
|
222
|
+
if ( !event.ctrlKey && !event.metaKey ) {
|
|
223
|
+
|
|
224
|
+
// Update aria-selected immediately so that AT think the tab is already selected.
|
|
225
|
+
// Otherwise AT may confuse the user by stating that they need to activate the tab,
|
|
226
|
+
// but the tab will already be activated by the time the announcement finishes.
|
|
227
|
+
focusedTab.attr( "aria-selected", "false" );
|
|
228
|
+
this.tabs.eq( selectedIndex ).attr( "aria-selected", "true" );
|
|
229
|
+
|
|
230
|
+
this.activating = this._delay( function() {
|
|
231
|
+
this.option( "active", selectedIndex );
|
|
232
|
+
}, this.delay );
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
|
|
236
|
+
_panelKeydown: function( event ) {
|
|
237
|
+
if ( this._handlePageNav( event ) ) {
|
|
238
|
+
return;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// Ctrl+up moves focus to the current tab
|
|
242
|
+
if ( event.ctrlKey && event.keyCode === $.ui.keyCode.UP ) {
|
|
243
|
+
event.preventDefault();
|
|
244
|
+
this.active.trigger( "focus" );
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
|
|
248
|
+
// Alt+page up/down moves focus to the previous/next tab (and activates)
|
|
249
|
+
_handlePageNav: function( event ) {
|
|
250
|
+
if ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_UP ) {
|
|
251
|
+
this._activate( this._focusNextTab( this.options.active - 1, false ) );
|
|
252
|
+
return true;
|
|
253
|
+
}
|
|
254
|
+
if ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_DOWN ) {
|
|
255
|
+
this._activate( this._focusNextTab( this.options.active + 1, true ) );
|
|
256
|
+
return true;
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
|
|
260
|
+
_findNextTab: function( index, goingForward ) {
|
|
261
|
+
var lastTabIndex = this.tabs.length - 1;
|
|
262
|
+
|
|
263
|
+
function constrain() {
|
|
264
|
+
if ( index > lastTabIndex ) {
|
|
265
|
+
index = 0;
|
|
266
|
+
}
|
|
267
|
+
if ( index < 0 ) {
|
|
268
|
+
index = lastTabIndex;
|
|
269
|
+
}
|
|
270
|
+
return index;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
while ( $.inArray( constrain(), this.options.disabled ) !== -1 ) {
|
|
274
|
+
index = goingForward ? index + 1 : index - 1;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
return index;
|
|
278
|
+
},
|
|
279
|
+
|
|
280
|
+
_focusNextTab: function( index, goingForward ) {
|
|
281
|
+
index = this._findNextTab( index, goingForward );
|
|
282
|
+
this.tabs.eq( index ).trigger( "focus" );
|
|
283
|
+
return index;
|
|
284
|
+
},
|
|
285
|
+
|
|
286
|
+
_setOption: function( key, value ) {
|
|
287
|
+
if ( key === "active" ) {
|
|
288
|
+
|
|
289
|
+
// _activate() will handle invalid values and update this.options
|
|
290
|
+
this._activate( value );
|
|
291
|
+
return;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
this._super( key, value );
|
|
295
|
+
|
|
296
|
+
if ( key === "collapsible" ) {
|
|
297
|
+
this._toggleClass( "ui-tabs-collapsible", null, value );
|
|
298
|
+
|
|
299
|
+
// Setting collapsible: false while collapsed; open first panel
|
|
300
|
+
if ( !value && this.options.active === false ) {
|
|
301
|
+
this._activate( 0 );
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
if ( key === "event" ) {
|
|
306
|
+
this._setupEvents( value );
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
if ( key === "heightStyle" ) {
|
|
310
|
+
this._setupHeightStyle( value );
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
|
|
314
|
+
_sanitizeSelector: function( hash ) {
|
|
315
|
+
return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : "";
|
|
316
|
+
},
|
|
317
|
+
|
|
318
|
+
refresh: function() {
|
|
319
|
+
var options = this.options,
|
|
320
|
+
lis = this.tablist.children( ":has(a[href])" );
|
|
321
|
+
|
|
322
|
+
// Get disabled tabs from class attribute from HTML
|
|
323
|
+
// this will get converted to a boolean if needed in _refresh()
|
|
324
|
+
options.disabled = $.map( lis.filter( ".ui-state-disabled" ), function( tab ) {
|
|
325
|
+
return lis.index( tab );
|
|
326
|
+
} );
|
|
327
|
+
|
|
328
|
+
this._processTabs();
|
|
329
|
+
|
|
330
|
+
// Was collapsed or no tabs
|
|
331
|
+
if ( options.active === false || !this.anchors.length ) {
|
|
332
|
+
options.active = false;
|
|
333
|
+
this.active = $();
|
|
334
|
+
|
|
335
|
+
// was active, but active tab is gone
|
|
336
|
+
} else if ( this.active.length && !$.contains( this.tablist[ 0 ], this.active[ 0 ] ) ) {
|
|
337
|
+
|
|
338
|
+
// all remaining tabs are disabled
|
|
339
|
+
if ( this.tabs.length === options.disabled.length ) {
|
|
340
|
+
options.active = false;
|
|
341
|
+
this.active = $();
|
|
342
|
+
|
|
343
|
+
// activate previous tab
|
|
344
|
+
} else {
|
|
345
|
+
this._activate( this._findNextTab( Math.max( 0, options.active - 1 ), false ) );
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
// was active, active tab still exists
|
|
349
|
+
} else {
|
|
350
|
+
|
|
351
|
+
// make sure active index is correct
|
|
352
|
+
options.active = this.tabs.index( this.active );
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
this._refresh();
|
|
356
|
+
},
|
|
357
|
+
|
|
358
|
+
_refresh: function() {
|
|
359
|
+
this._setOptionDisabled( this.options.disabled );
|
|
360
|
+
this._setupEvents( this.options.event );
|
|
361
|
+
this._setupHeightStyle( this.options.heightStyle );
|
|
362
|
+
|
|
363
|
+
this.tabs.not( this.active ).attr( {
|
|
364
|
+
"aria-selected": "false",
|
|
365
|
+
"aria-expanded": "false",
|
|
366
|
+
tabIndex: -1
|
|
367
|
+
} );
|
|
368
|
+
this.panels.not( this._getPanelForTab( this.active ) )
|
|
369
|
+
.hide()
|
|
370
|
+
.attr( {
|
|
371
|
+
"aria-hidden": "true"
|
|
372
|
+
} );
|
|
373
|
+
|
|
374
|
+
// Make sure one tab is in the tab order
|
|
375
|
+
if ( !this.active.length ) {
|
|
376
|
+
this.tabs.eq( 0 ).attr( "tabIndex", 0 );
|
|
377
|
+
} else {
|
|
378
|
+
this.active
|
|
379
|
+
.attr( {
|
|
380
|
+
"aria-selected": "true",
|
|
381
|
+
"aria-expanded": "true",
|
|
382
|
+
tabIndex: 0
|
|
383
|
+
} );
|
|
384
|
+
this._addClass( this.active, "ui-tabs-active", "ui-state-active" );
|
|
385
|
+
this._getPanelForTab( this.active )
|
|
386
|
+
.show()
|
|
387
|
+
.attr( {
|
|
388
|
+
"aria-hidden": "false"
|
|
389
|
+
} );
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
|
|
393
|
+
_processTabs: function() {
|
|
394
|
+
var that = this,
|
|
395
|
+
prevTabs = this.tabs,
|
|
396
|
+
prevAnchors = this.anchors,
|
|
397
|
+
prevPanels = this.panels;
|
|
398
|
+
|
|
399
|
+
this.tablist = this._getList().attr( "role", "tablist" );
|
|
400
|
+
this._addClass( this.tablist, "ui-tabs-nav",
|
|
401
|
+
"ui-helper-reset ui-helper-clearfix ui-widget-header" );
|
|
402
|
+
|
|
403
|
+
// Prevent users from focusing disabled tabs via click
|
|
404
|
+
this.tablist
|
|
405
|
+
.on( "mousedown" + this.eventNamespace, "> li", function( event ) {
|
|
406
|
+
if ( $( this ).is( ".ui-state-disabled" ) ) {
|
|
407
|
+
event.preventDefault();
|
|
408
|
+
}
|
|
409
|
+
} )
|
|
410
|
+
|
|
411
|
+
// Support: IE <9
|
|
412
|
+
// Preventing the default action in mousedown doesn't prevent IE
|
|
413
|
+
// from focusing the element, so if the anchor gets focused, blur.
|
|
414
|
+
// We don't have to worry about focusing the previously focused
|
|
415
|
+
// element since clicking on a non-focusable element should focus
|
|
416
|
+
// the body anyway.
|
|
417
|
+
.on( "focus" + this.eventNamespace, ".ui-tabs-anchor", function() {
|
|
418
|
+
if ( $( this ).closest( "li" ).is( ".ui-state-disabled" ) ) {
|
|
419
|
+
this.blur();
|
|
420
|
+
}
|
|
421
|
+
} );
|
|
422
|
+
|
|
423
|
+
this.tabs = this.tablist.find( "> li:has(a[href])" )
|
|
424
|
+
.attr( {
|
|
425
|
+
role: "tab",
|
|
426
|
+
tabIndex: -1
|
|
427
|
+
} );
|
|
428
|
+
this._addClass( this.tabs, "ui-tabs-tab", "ui-state-default" );
|
|
429
|
+
|
|
430
|
+
this.anchors = this.tabs.map( function() {
|
|
431
|
+
return $( "a", this )[ 0 ];
|
|
432
|
+
} )
|
|
433
|
+
.attr( {
|
|
434
|
+
role: "presentation",
|
|
435
|
+
tabIndex: -1
|
|
436
|
+
} );
|
|
437
|
+
this._addClass( this.anchors, "ui-tabs-anchor" );
|
|
438
|
+
|
|
439
|
+
this.panels = $();
|
|
440
|
+
|
|
441
|
+
this.anchors.each( function( i, anchor ) {
|
|
442
|
+
var selector, panel, panelId,
|
|
443
|
+
anchorId = $( anchor ).uniqueId().attr( "id" ),
|
|
444
|
+
tab = $( anchor ).closest( "li" ),
|
|
445
|
+
originalAriaControls = tab.attr( "aria-controls" );
|
|
446
|
+
|
|
447
|
+
// Inline tab
|
|
448
|
+
if ( that._isLocal( anchor ) ) {
|
|
449
|
+
selector = anchor.hash;
|
|
450
|
+
panelId = selector.substring( 1 );
|
|
451
|
+
panel = that.element.find( that._sanitizeSelector( selector ) );
|
|
452
|
+
|
|
453
|
+
// remote tab
|
|
454
|
+
} else {
|
|
455
|
+
|
|
456
|
+
// If the tab doesn't already have aria-controls,
|
|
457
|
+
// generate an id by using a throw-away element
|
|
458
|
+
panelId = tab.attr( "aria-controls" ) || $( {} ).uniqueId()[ 0 ].id;
|
|
459
|
+
selector = "#" + panelId;
|
|
460
|
+
panel = that.element.find( selector );
|
|
461
|
+
if ( !panel.length ) {
|
|
462
|
+
panel = that._createPanel( panelId );
|
|
463
|
+
panel.insertAfter( that.panels[ i - 1 ] || that.tablist );
|
|
464
|
+
}
|
|
465
|
+
panel.attr( "aria-live", "polite" );
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
if ( panel.length ) {
|
|
469
|
+
that.panels = that.panels.add( panel );
|
|
470
|
+
}
|
|
471
|
+
if ( originalAriaControls ) {
|
|
472
|
+
tab.data( "ui-tabs-aria-controls", originalAriaControls );
|
|
473
|
+
}
|
|
474
|
+
tab.attr( {
|
|
475
|
+
"aria-controls": panelId,
|
|
476
|
+
"aria-labelledby": anchorId
|
|
477
|
+
} );
|
|
478
|
+
panel.attr( "aria-labelledby", anchorId );
|
|
479
|
+
} );
|
|
480
|
+
|
|
481
|
+
this.panels.attr( "role", "tabpanel" );
|
|
482
|
+
this._addClass( this.panels, "ui-tabs-panel", "ui-widget-content" );
|
|
483
|
+
|
|
484
|
+
// Avoid memory leaks (#10056)
|
|
485
|
+
if ( prevTabs ) {
|
|
486
|
+
this._off( prevTabs.not( this.tabs ) );
|
|
487
|
+
this._off( prevAnchors.not( this.anchors ) );
|
|
488
|
+
this._off( prevPanels.not( this.panels ) );
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
|
|
492
|
+
// Allow overriding how to find the list for rare usage scenarios (#7715)
|
|
493
|
+
_getList: function() {
|
|
494
|
+
return this.tablist || this.element.find( "ol, ul" ).eq( 0 );
|
|
495
|
+
},
|
|
496
|
+
|
|
497
|
+
_createPanel: function( id ) {
|
|
498
|
+
return $( "<div>" )
|
|
499
|
+
.attr( "id", id )
|
|
500
|
+
.data( "ui-tabs-destroy", true );
|
|
501
|
+
},
|
|
502
|
+
|
|
503
|
+
_setOptionDisabled: function( disabled ) {
|
|
504
|
+
var currentItem, li, i;
|
|
505
|
+
|
|
506
|
+
if ( $.isArray( disabled ) ) {
|
|
507
|
+
if ( !disabled.length ) {
|
|
508
|
+
disabled = false;
|
|
509
|
+
} else if ( disabled.length === this.anchors.length ) {
|
|
510
|
+
disabled = true;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
// Disable tabs
|
|
515
|
+
for ( i = 0; ( li = this.tabs[ i ] ); i++ ) {
|
|
516
|
+
currentItem = $( li );
|
|
517
|
+
if ( disabled === true || $.inArray( i, disabled ) !== -1 ) {
|
|
518
|
+
currentItem.attr( "aria-disabled", "true" );
|
|
519
|
+
this._addClass( currentItem, null, "ui-state-disabled" );
|
|
520
|
+
} else {
|
|
521
|
+
currentItem.removeAttr( "aria-disabled" );
|
|
522
|
+
this._removeClass( currentItem, null, "ui-state-disabled" );
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
this.options.disabled = disabled;
|
|
527
|
+
|
|
528
|
+
this._toggleClass( this.widget(), this.widgetFullName + "-disabled", null,
|
|
529
|
+
disabled === true );
|
|
530
|
+
},
|
|
531
|
+
|
|
532
|
+
_setupEvents: function( event ) {
|
|
533
|
+
var events = {};
|
|
534
|
+
if ( event ) {
|
|
535
|
+
$.each( event.split( " " ), function( index, eventName ) {
|
|
536
|
+
events[ eventName ] = "_eventHandler";
|
|
537
|
+
} );
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
this._off( this.anchors.add( this.tabs ).add( this.panels ) );
|
|
541
|
+
|
|
542
|
+
// Always prevent the default action, even when disabled
|
|
543
|
+
this._on( true, this.anchors, {
|
|
544
|
+
click: function( event ) {
|
|
545
|
+
event.preventDefault();
|
|
546
|
+
}
|
|
547
|
+
} );
|
|
548
|
+
this._on( this.anchors, events );
|
|
549
|
+
this._on( this.tabs, { keydown: "_tabKeydown" } );
|
|
550
|
+
this._on( this.panels, { keydown: "_panelKeydown" } );
|
|
551
|
+
|
|
552
|
+
this._focusable( this.tabs );
|
|
553
|
+
this._hoverable( this.tabs );
|
|
554
|
+
},
|
|
555
|
+
|
|
556
|
+
_setupHeightStyle: function( heightStyle ) {
|
|
557
|
+
var maxHeight,
|
|
558
|
+
parent = this.element.parent();
|
|
559
|
+
|
|
560
|
+
if ( heightStyle === "fill" ) {
|
|
561
|
+
maxHeight = parent.height();
|
|
562
|
+
maxHeight -= this.element.outerHeight() - this.element.height();
|
|
563
|
+
|
|
564
|
+
this.element.siblings( ":visible" ).each( function() {
|
|
565
|
+
var elem = $( this ),
|
|
566
|
+
position = elem.css( "position" );
|
|
567
|
+
|
|
568
|
+
if ( position === "absolute" || position === "fixed" ) {
|
|
569
|
+
return;
|
|
570
|
+
}
|
|
571
|
+
maxHeight -= elem.outerHeight( true );
|
|
572
|
+
} );
|
|
573
|
+
|
|
574
|
+
this.element.children().not( this.panels ).each( function() {
|
|
575
|
+
maxHeight -= $( this ).outerHeight( true );
|
|
576
|
+
} );
|
|
577
|
+
|
|
578
|
+
this.panels.each( function() {
|
|
579
|
+
$( this ).height( Math.max( 0, maxHeight -
|
|
580
|
+
$( this ).innerHeight() + $( this ).height() ) );
|
|
581
|
+
} )
|
|
582
|
+
.css( "overflow", "auto" );
|
|
583
|
+
} else if ( heightStyle === "auto" ) {
|
|
584
|
+
maxHeight = 0;
|
|
585
|
+
this.panels.each( function() {
|
|
586
|
+
maxHeight = Math.max( maxHeight, $( this ).height( "" ).height() );
|
|
587
|
+
} ).height( maxHeight );
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
|
|
591
|
+
_eventHandler: function( event ) {
|
|
592
|
+
var options = this.options,
|
|
593
|
+
active = this.active,
|
|
594
|
+
anchor = $( event.currentTarget ),
|
|
595
|
+
tab = anchor.closest( "li" ),
|
|
596
|
+
clickedIsActive = tab[ 0 ] === active[ 0 ],
|
|
597
|
+
collapsing = clickedIsActive && options.collapsible,
|
|
598
|
+
toShow = collapsing ? $() : this._getPanelForTab( tab ),
|
|
599
|
+
toHide = !active.length ? $() : this._getPanelForTab( active ),
|
|
600
|
+
eventData = {
|
|
601
|
+
oldTab: active,
|
|
602
|
+
oldPanel: toHide,
|
|
603
|
+
newTab: collapsing ? $() : tab,
|
|
604
|
+
newPanel: toShow
|
|
605
|
+
};
|
|
606
|
+
|
|
607
|
+
event.preventDefault();
|
|
608
|
+
|
|
609
|
+
if ( tab.hasClass( "ui-state-disabled" ) ||
|
|
610
|
+
|
|
611
|
+
// tab is already loading
|
|
612
|
+
tab.hasClass( "ui-tabs-loading" ) ||
|
|
613
|
+
|
|
614
|
+
// can't switch durning an animation
|
|
615
|
+
this.running ||
|
|
616
|
+
|
|
617
|
+
// click on active header, but not collapsible
|
|
618
|
+
( clickedIsActive && !options.collapsible ) ||
|
|
619
|
+
|
|
620
|
+
// allow canceling activation
|
|
621
|
+
( this._trigger( "beforeActivate", event, eventData ) === false ) ) {
|
|
622
|
+
return;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
options.active = collapsing ? false : this.tabs.index( tab );
|
|
626
|
+
|
|
627
|
+
this.active = clickedIsActive ? $() : tab;
|
|
628
|
+
if ( this.xhr ) {
|
|
629
|
+
this.xhr.abort();
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
if ( !toHide.length && !toShow.length ) {
|
|
633
|
+
$.error( "jQuery UI Tabs: Mismatching fragment identifier." );
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
if ( toShow.length ) {
|
|
637
|
+
this.load( this.tabs.index( tab ), event );
|
|
638
|
+
}
|
|
639
|
+
this._toggle( event, eventData );
|
|
640
|
+
},
|
|
641
|
+
|
|
642
|
+
// Handles show/hide for selecting tabs
|
|
643
|
+
_toggle: function( event, eventData ) {
|
|
644
|
+
var that = this,
|
|
645
|
+
toShow = eventData.newPanel,
|
|
646
|
+
toHide = eventData.oldPanel;
|
|
647
|
+
|
|
648
|
+
this.running = true;
|
|
649
|
+
|
|
650
|
+
function complete() {
|
|
651
|
+
that.running = false;
|
|
652
|
+
that._trigger( "activate", event, eventData );
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
function show() {
|
|
656
|
+
that._addClass( eventData.newTab.closest( "li" ), "ui-tabs-active", "ui-state-active" );
|
|
657
|
+
|
|
658
|
+
if ( toShow.length && that.options.show ) {
|
|
659
|
+
that._show( toShow, that.options.show, complete );
|
|
660
|
+
} else {
|
|
661
|
+
toShow.show();
|
|
662
|
+
complete();
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
// Start out by hiding, then showing, then completing
|
|
667
|
+
if ( toHide.length && this.options.hide ) {
|
|
668
|
+
this._hide( toHide, this.options.hide, function() {
|
|
669
|
+
that._removeClass( eventData.oldTab.closest( "li" ),
|
|
670
|
+
"ui-tabs-active", "ui-state-active" );
|
|
671
|
+
show();
|
|
672
|
+
} );
|
|
673
|
+
} else {
|
|
674
|
+
this._removeClass( eventData.oldTab.closest( "li" ),
|
|
675
|
+
"ui-tabs-active", "ui-state-active" );
|
|
676
|
+
toHide.hide();
|
|
677
|
+
show();
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
toHide.attr( "aria-hidden", "true" );
|
|
681
|
+
eventData.oldTab.attr( {
|
|
682
|
+
"aria-selected": "false",
|
|
683
|
+
"aria-expanded": "false"
|
|
684
|
+
} );
|
|
685
|
+
|
|
686
|
+
// If we're switching tabs, remove the old tab from the tab order.
|
|
687
|
+
// If we're opening from collapsed state, remove the previous tab from the tab order.
|
|
688
|
+
// If we're collapsing, then keep the collapsing tab in the tab order.
|
|
689
|
+
if ( toShow.length && toHide.length ) {
|
|
690
|
+
eventData.oldTab.attr( "tabIndex", -1 );
|
|
691
|
+
} else if ( toShow.length ) {
|
|
692
|
+
this.tabs.filter( function() {
|
|
693
|
+
return $( this ).attr( "tabIndex" ) === 0;
|
|
694
|
+
} )
|
|
695
|
+
.attr( "tabIndex", -1 );
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
toShow.attr( "aria-hidden", "false" );
|
|
699
|
+
eventData.newTab.attr( {
|
|
700
|
+
"aria-selected": "true",
|
|
701
|
+
"aria-expanded": "true",
|
|
702
|
+
tabIndex: 0
|
|
703
|
+
} );
|
|
704
|
+
},
|
|
705
|
+
|
|
706
|
+
_activate: function( index ) {
|
|
707
|
+
var anchor,
|
|
708
|
+
active = this._findActive( index );
|
|
709
|
+
|
|
710
|
+
// Trying to activate the already active panel
|
|
711
|
+
if ( active[ 0 ] === this.active[ 0 ] ) {
|
|
712
|
+
return;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
// Trying to collapse, simulate a click on the current active header
|
|
716
|
+
if ( !active.length ) {
|
|
717
|
+
active = this.active;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
anchor = active.find( ".ui-tabs-anchor" )[ 0 ];
|
|
721
|
+
this._eventHandler( {
|
|
722
|
+
target: anchor,
|
|
723
|
+
currentTarget: anchor,
|
|
724
|
+
preventDefault: $.noop
|
|
725
|
+
} );
|
|
726
|
+
},
|
|
727
|
+
|
|
728
|
+
_findActive: function( index ) {
|
|
729
|
+
return index === false ? $() : this.tabs.eq( index );
|
|
730
|
+
},
|
|
731
|
+
|
|
732
|
+
_getIndex: function( index ) {
|
|
733
|
+
|
|
734
|
+
// meta-function to give users option to provide a href string instead of a numerical index.
|
|
735
|
+
if ( typeof index === "string" ) {
|
|
736
|
+
index = this.anchors.index( this.anchors.filter( "[href$='" +
|
|
737
|
+
$.ui.escapeSelector( index ) + "']" ) );
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
return index;
|
|
741
|
+
},
|
|
742
|
+
|
|
743
|
+
_destroy: function() {
|
|
744
|
+
if ( this.xhr ) {
|
|
745
|
+
this.xhr.abort();
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
this.tablist
|
|
749
|
+
.removeAttr( "role" )
|
|
750
|
+
.off( this.eventNamespace );
|
|
751
|
+
|
|
752
|
+
this.anchors
|
|
753
|
+
.removeAttr( "role tabIndex" )
|
|
754
|
+
.removeUniqueId();
|
|
755
|
+
|
|
756
|
+
this.tabs.add( this.panels ).each( function() {
|
|
757
|
+
if ( $.data( this, "ui-tabs-destroy" ) ) {
|
|
758
|
+
$( this ).remove();
|
|
759
|
+
} else {
|
|
760
|
+
$( this ).removeAttr( "role tabIndex " +
|
|
761
|
+
"aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded" );
|
|
762
|
+
}
|
|
763
|
+
} );
|
|
764
|
+
|
|
765
|
+
this.tabs.each( function() {
|
|
766
|
+
var li = $( this ),
|
|
767
|
+
prev = li.data( "ui-tabs-aria-controls" );
|
|
768
|
+
if ( prev ) {
|
|
769
|
+
li
|
|
770
|
+
.attr( "aria-controls", prev )
|
|
771
|
+
.removeData( "ui-tabs-aria-controls" );
|
|
772
|
+
} else {
|
|
773
|
+
li.removeAttr( "aria-controls" );
|
|
774
|
+
}
|
|
775
|
+
} );
|
|
776
|
+
|
|
777
|
+
this.panels.show();
|
|
778
|
+
|
|
779
|
+
if ( this.options.heightStyle !== "content" ) {
|
|
780
|
+
this.panels.css( "height", "" );
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
|
|
784
|
+
enable: function( index ) {
|
|
785
|
+
var disabled = this.options.disabled;
|
|
786
|
+
if ( disabled === false ) {
|
|
787
|
+
return;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
if ( index === undefined ) {
|
|
791
|
+
disabled = false;
|
|
792
|
+
} else {
|
|
793
|
+
index = this._getIndex( index );
|
|
794
|
+
if ( $.isArray( disabled ) ) {
|
|
795
|
+
disabled = $.map( disabled, function( num ) {
|
|
796
|
+
return num !== index ? num : null;
|
|
797
|
+
} );
|
|
798
|
+
} else {
|
|
799
|
+
disabled = $.map( this.tabs, function( li, num ) {
|
|
800
|
+
return num !== index ? num : null;
|
|
801
|
+
} );
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
this._setOptionDisabled( disabled );
|
|
805
|
+
},
|
|
806
|
+
|
|
807
|
+
disable: function( index ) {
|
|
808
|
+
var disabled = this.options.disabled;
|
|
809
|
+
if ( disabled === true ) {
|
|
810
|
+
return;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
if ( index === undefined ) {
|
|
814
|
+
disabled = true;
|
|
815
|
+
} else {
|
|
816
|
+
index = this._getIndex( index );
|
|
817
|
+
if ( $.inArray( index, disabled ) !== -1 ) {
|
|
818
|
+
return;
|
|
819
|
+
}
|
|
820
|
+
if ( $.isArray( disabled ) ) {
|
|
821
|
+
disabled = $.merge( [ index ], disabled ).sort();
|
|
822
|
+
} else {
|
|
823
|
+
disabled = [ index ];
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
this._setOptionDisabled( disabled );
|
|
827
|
+
},
|
|
828
|
+
|
|
829
|
+
load: function( index, event ) {
|
|
830
|
+
index = this._getIndex( index );
|
|
831
|
+
var that = this,
|
|
832
|
+
tab = this.tabs.eq( index ),
|
|
833
|
+
anchor = tab.find( ".ui-tabs-anchor" ),
|
|
834
|
+
panel = this._getPanelForTab( tab ),
|
|
835
|
+
eventData = {
|
|
836
|
+
tab: tab,
|
|
837
|
+
panel: panel
|
|
838
|
+
},
|
|
839
|
+
complete = function( jqXHR, status ) {
|
|
840
|
+
if ( status === "abort" ) {
|
|
841
|
+
that.panels.stop( false, true );
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
that._removeClass( tab, "ui-tabs-loading" );
|
|
845
|
+
panel.removeAttr( "aria-busy" );
|
|
846
|
+
|
|
847
|
+
if ( jqXHR === that.xhr ) {
|
|
848
|
+
delete that.xhr;
|
|
849
|
+
}
|
|
850
|
+
};
|
|
851
|
+
|
|
852
|
+
// Not remote
|
|
853
|
+
if ( this._isLocal( anchor[ 0 ] ) ) {
|
|
854
|
+
return;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
this.xhr = $.ajax( this._ajaxSettings( anchor, event, eventData ) );
|
|
858
|
+
|
|
859
|
+
// Support: jQuery <1.8
|
|
860
|
+
// jQuery <1.8 returns false if the request is canceled in beforeSend,
|
|
861
|
+
// but as of 1.8, $.ajax() always returns a jqXHR object.
|
|
862
|
+
if ( this.xhr && this.xhr.statusText !== "canceled" ) {
|
|
863
|
+
this._addClass( tab, "ui-tabs-loading" );
|
|
864
|
+
panel.attr( "aria-busy", "true" );
|
|
865
|
+
|
|
866
|
+
this.xhr
|
|
867
|
+
.done( function( response, status, jqXHR ) {
|
|
868
|
+
|
|
869
|
+
// support: jQuery <1.8
|
|
870
|
+
// http://bugs.jquery.com/ticket/11778
|
|
871
|
+
setTimeout( function() {
|
|
872
|
+
panel.html( response );
|
|
873
|
+
that._trigger( "load", event, eventData );
|
|
874
|
+
|
|
875
|
+
complete( jqXHR, status );
|
|
876
|
+
}, 1 );
|
|
877
|
+
} )
|
|
878
|
+
.fail( function( jqXHR, status ) {
|
|
879
|
+
|
|
880
|
+
// support: jQuery <1.8
|
|
881
|
+
// http://bugs.jquery.com/ticket/11778
|
|
882
|
+
setTimeout( function() {
|
|
883
|
+
complete( jqXHR, status );
|
|
884
|
+
}, 1 );
|
|
885
|
+
} );
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
|
|
889
|
+
_ajaxSettings: function( anchor, event, eventData ) {
|
|
890
|
+
var that = this;
|
|
891
|
+
return {
|
|
892
|
+
|
|
893
|
+
// Support: IE <11 only
|
|
894
|
+
// Strip any hash that exists to prevent errors with the Ajax request
|
|
895
|
+
url: anchor.attr( "href" ).replace( /#.*$/, "" ),
|
|
896
|
+
beforeSend: function( jqXHR, settings ) {
|
|
897
|
+
return that._trigger( "beforeLoad", event,
|
|
898
|
+
$.extend( { jqXHR: jqXHR, ajaxSettings: settings }, eventData ) );
|
|
899
|
+
}
|
|
900
|
+
};
|
|
901
|
+
},
|
|
902
|
+
|
|
903
|
+
_getPanelForTab: function( tab ) {
|
|
904
|
+
var id = $( tab ).attr( "aria-controls" );
|
|
905
|
+
return this.element.find( this._sanitizeSelector( "#" + id ) );
|
|
906
|
+
}
|
|
907
|
+
} );
|
|
908
|
+
|
|
909
|
+
// DEPRECATED
|
|
910
|
+
// TODO: Switch return back to widget declaration at top of file when this is removed
|
|
911
|
+
if ( $.uiBackCompat !== false ) {
|
|
912
|
+
|
|
913
|
+
// Backcompat for ui-tab class (now ui-tabs-tab)
|
|
914
|
+
$.widget( "ui.tabs", $.ui.tabs, {
|
|
915
|
+
_processTabs: function() {
|
|
916
|
+
this._superApply( arguments );
|
|
917
|
+
this._addClass( this.tabs, "ui-tab" );
|
|
918
|
+
}
|
|
919
|
+
} );
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
return $.ui.tabs;
|
|
923
|
+
|
|
924
|
+
} ) );
|