├── .gitignore ├── DEVELOPERS.md ├── LICENSE ├── README.md ├── arial.ttf ├── cli.py ├── config.py-example ├── dumptools.py ├── match.py ├── merge.py ├── merge_spatial.py ├── models.py ├── public ├── .gitignore ├── admin.html ├── admin.js ├── adminstyle.css ├── autotrack.js ├── bootstrap.js ├── box.jpg ├── classify.jpg ├── entering1.png ├── entering2.png ├── entering3.png ├── entering4.png ├── everyobject.jpg ├── favicon.ico ├── frames │ ├── .gitignore │ └── .htaccess ├── homography.html ├── homography.js ├── index.html ├── instructions.js ├── job.js ├── jquery-migrate-1.2.1.min.js ├── jquery-ui │ ├── css │ │ └── smoothness │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ └── jquery-ui-1.10.4.custom.min.css │ ├── development-bundle │ │ ├── AUTHORS.txt │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── demos │ │ │ ├── accordion │ │ │ │ ├── collapsible.html │ │ │ │ ├── custom-icons.html │ │ │ │ ├── default.html │ │ │ │ ├── fillspace.html │ │ │ │ ├── hoverintent.html │ │ │ │ ├── index.html │ │ │ │ ├── no-auto-height.html │ │ │ │ └── sortable.html │ │ │ ├── addClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── animate │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── autocomplete │ │ │ │ ├── categories.html │ │ │ │ ├── combobox.html │ │ │ │ ├── custom-data.html │ │ │ │ ├── default.html │ │ │ │ ├── folding.html │ │ │ │ ├── images │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ ├── index.html │ │ │ │ ├── london.xml │ │ │ │ ├── maxheight.html │ │ │ │ ├── multiple-remote.html │ │ │ │ ├── multiple.html │ │ │ │ ├── remote-jsonp.html │ │ │ │ ├── remote-with-cache.html │ │ │ │ ├── remote.html │ │ │ │ ├── search.php │ │ │ │ └── xml.html │ │ │ ├── button │ │ │ │ ├── checkbox.html │ │ │ │ ├── default.html │ │ │ │ ├── icons.html │ │ │ │ ├── index.html │ │ │ │ ├── radio.html │ │ │ │ ├── splitbutton.html │ │ │ │ └── toolbar.html │ │ │ ├── datepicker │ │ │ │ ├── alt-field.html │ │ │ │ ├── animation.html │ │ │ │ ├── buttonbar.html │ │ │ │ ├── date-formats.html │ │ │ │ ├── date-range.html │ │ │ │ ├── default.html │ │ │ │ ├── dropdown-month-year.html │ │ │ │ ├── icon-trigger.html │ │ │ │ ├── images │ │ │ │ │ └── calendar.gif │ │ │ │ ├── index.html │ │ │ │ ├── inline.html │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── localization.html │ │ │ │ ├── min-max.html │ │ │ │ ├── multiple-calendars.html │ │ │ │ ├── other-months.html │ │ │ │ └── show-week.html │ │ │ ├── demos.css │ │ │ ├── dialog │ │ │ │ ├── animated.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── modal-confirmation.html │ │ │ │ ├── modal-form.html │ │ │ │ ├── modal-message.html │ │ │ │ └── modal.html │ │ │ ├── draggable │ │ │ │ ├── constrain-movement.html │ │ │ │ ├── cursor-style.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── events.html │ │ │ │ ├── handle.html │ │ │ │ ├── index.html │ │ │ │ ├── revert.html │ │ │ │ ├── scroll.html │ │ │ │ ├── snap-to.html │ │ │ │ ├── sortable.html │ │ │ │ └── visual-feedback.html │ │ │ ├── droppable │ │ │ │ ├── accepted-elements.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ ├── index.html │ │ │ │ ├── photo-manager.html │ │ │ │ ├── propagation.html │ │ │ │ ├── revert.html │ │ │ │ ├── shopping-cart.html │ │ │ │ └── visual-feedback.html │ │ │ ├── effect │ │ │ │ ├── default.html │ │ │ │ ├── easing.html │ │ │ │ └── index.html │ │ │ ├── hide │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── images │ │ │ │ ├── calendar.gif │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ ├── demo-config-on.gif │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ ├── icon-docs-info.gif │ │ │ │ └── pbar-ani.gif │ │ │ ├── index.html │ │ │ ├── menu │ │ │ │ ├── default.html │ │ │ │ ├── icons.html │ │ │ │ └── index.html │ │ │ ├── position │ │ │ │ ├── cycler.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── earth.jpg │ │ │ │ │ ├── flight.jpg │ │ │ │ │ └── rocket.jpg │ │ │ │ └── index.html │ │ │ ├── progressbar │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── indeterminate.html │ │ │ │ ├── index.html │ │ │ │ └── label.html │ │ │ ├── removeClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── resizable │ │ │ │ ├── animate.html │ │ │ │ ├── aspect-ratio.html │ │ │ │ ├── constrain-area.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── helper.html │ │ │ │ ├── index.html │ │ │ │ ├── max-min.html │ │ │ │ ├── snap-to-grid.html │ │ │ │ ├── synchronous-resize.html │ │ │ │ ├── textarea.html │ │ │ │ └── visual-feedback.html │ │ │ ├── selectable │ │ │ │ ├── default.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── index.html │ │ │ │ └── serialize.html │ │ │ ├── show │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── slider │ │ │ │ ├── colorpicker.html │ │ │ │ ├── default.html │ │ │ │ ├── hotelrooms.html │ │ │ │ ├── index.html │ │ │ │ ├── multiple-vertical.html │ │ │ │ ├── range-vertical.html │ │ │ │ ├── range.html │ │ │ │ ├── rangemax.html │ │ │ │ ├── rangemin.html │ │ │ │ ├── side-scroll.html │ │ │ │ ├── slider-vertical.html │ │ │ │ └── steps.html │ │ │ ├── sortable │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ ├── connect-lists.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── empty-lists.html │ │ │ │ ├── index.html │ │ │ │ ├── items.html │ │ │ │ ├── placeholder.html │ │ │ │ └── portlets.html │ │ │ ├── spinner │ │ │ │ ├── currency.html │ │ │ │ ├── decimal.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── latlong.html │ │ │ │ ├── overflow.html │ │ │ │ └── time.html │ │ │ ├── switchClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── tabs │ │ │ │ ├── ajax.html │ │ │ │ ├── ajax │ │ │ │ │ ├── content1.html │ │ │ │ │ ├── content2.html │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ └── content4-broken.php │ │ │ │ ├── bottom.html │ │ │ │ ├── collapsible.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── manipulation.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── sortable.html │ │ │ │ └── vertical.html │ │ │ ├── toggle │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── toggleClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── tooltip │ │ │ │ ├── ajax │ │ │ │ │ ├── content1.html │ │ │ │ │ └── content2.html │ │ │ │ ├── custom-animation.html │ │ │ │ ├── custom-content.html │ │ │ │ ├── custom-style.html │ │ │ │ ├── default.html │ │ │ │ ├── forms.html │ │ │ │ ├── images │ │ │ │ │ ├── st-stephens.jpg │ │ │ │ │ └── tower-bridge.jpg │ │ │ │ ├── index.html │ │ │ │ ├── tracking.html │ │ │ │ └── video-player.html │ │ │ └── widget │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ ├── docs │ │ │ ├── accordion.html │ │ │ ├── autocomplete.html │ │ │ ├── blind-effect.html │ │ │ ├── bounce-effect.html │ │ │ ├── button.html │ │ │ ├── clip-effect.html │ │ │ ├── datepicker.html │ │ │ ├── dialog.html │ │ │ ├── draggable.html │ │ │ ├── drop-effect.html │ │ │ ├── droppable.html │ │ │ ├── explode-effect.html │ │ │ ├── fade-effect.html │ │ │ ├── fold-effect.html │ │ │ ├── highlight-effect.html │ │ │ ├── jQuery.widget.html │ │ │ ├── menu.html │ │ │ ├── mouse.html │ │ │ ├── position.html │ │ │ ├── progressbar.html │ │ │ ├── puff-effect.html │ │ │ ├── pulsate-effect.html │ │ │ ├── resizable.html │ │ │ ├── scale-effect.html │ │ │ ├── selectable.html │ │ │ ├── shake-effect.html │ │ │ ├── size-effect.html │ │ │ ├── slide-effect.html │ │ │ ├── slider.html │ │ │ ├── sortable.html │ │ │ ├── spinner.html │ │ │ ├── tabs.html │ │ │ ├── tooltip.html │ │ │ └── transfer-effect.html │ │ ├── external │ │ │ ├── globalize.culture.de-DE.js │ │ │ ├── globalize.culture.ja-JP.js │ │ │ ├── globalize.js │ │ │ ├── jquery.mousewheel.js │ │ │ ├── jshint.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ ├── jquery-1.10.2.js │ │ ├── package.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ │ └── jquery.ui.tooltip.min.css │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ └── jquery.ui.tooltip.min.css │ │ ├── ui.accordion.jquery.json │ │ ├── ui.autocomplete.jquery.json │ │ ├── ui.button.jquery.json │ │ ├── ui.core.jquery.json │ │ ├── ui.datepicker.jquery.json │ │ ├── ui.dialog.jquery.json │ │ ├── ui.draggable.jquery.json │ │ ├── ui.droppable.jquery.json │ │ ├── ui.effect-blind.jquery.json │ │ ├── ui.effect-bounce.jquery.json │ │ ├── ui.effect-clip.jquery.json │ │ ├── ui.effect-drop.jquery.json │ │ ├── ui.effect-explode.jquery.json │ │ ├── ui.effect-fade.jquery.json │ │ ├── ui.effect-fold.jquery.json │ │ ├── ui.effect-highlight.jquery.json │ │ ├── ui.effect-pulsate.jquery.json │ │ ├── ui.effect-scale.jquery.json │ │ ├── ui.effect-shake.jquery.json │ │ ├── ui.effect-slide.jquery.json │ │ ├── ui.effect-transfer.jquery.json │ │ ├── ui.effect.jquery.json │ │ ├── ui.menu.jquery.json │ │ ├── ui.mouse.jquery.json │ │ ├── ui.position.jquery.json │ │ ├── ui.progressbar.jquery.json │ │ ├── ui.resizable.jquery.json │ │ ├── ui.selectable.jquery.json │ │ ├── ui.slider.jquery.json │ │ ├── ui.sortable.jquery.json │ │ ├── ui.spinner.jquery.json │ │ ├── ui.tabs.jquery.json │ │ ├── ui.tooltip.jquery.json │ │ ├── ui.widget.jquery.json │ │ └── ui │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.js │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ ├── jquery.ui.datepicker-be.js │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ ├── jquery.ui.datepicker-fr-CA.js │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ ├── jquery.ui.datepicker-ky.js │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ ├── jquery.ui.datepicker-nb.js │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ ├── jquery.ui.datepicker-nn.js │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery.ui.accordion.js │ │ │ ├── jquery.ui.autocomplete.js │ │ │ ├── jquery.ui.button.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.datepicker.js │ │ │ ├── jquery.ui.dialog.js │ │ │ ├── jquery.ui.draggable.js │ │ │ ├── jquery.ui.droppable.js │ │ │ ├── jquery.ui.effect-blind.js │ │ │ ├── jquery.ui.effect-bounce.js │ │ │ ├── jquery.ui.effect-clip.js │ │ │ ├── jquery.ui.effect-drop.js │ │ │ ├── jquery.ui.effect-explode.js │ │ │ ├── jquery.ui.effect-fade.js │ │ │ ├── jquery.ui.effect-fold.js │ │ │ ├── jquery.ui.effect-highlight.js │ │ │ ├── jquery.ui.effect-pulsate.js │ │ │ ├── jquery.ui.effect-scale.js │ │ │ ├── jquery.ui.effect-shake.js │ │ │ ├── jquery.ui.effect-slide.js │ │ │ ├── jquery.ui.effect-transfer.js │ │ │ ├── jquery.ui.effect.js │ │ │ ├── jquery.ui.menu.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.position.js │ │ │ ├── jquery.ui.progressbar.js │ │ │ ├── jquery.ui.resizable.js │ │ │ ├── jquery.ui.selectable.js │ │ │ ├── jquery.ui.slider.js │ │ │ ├── jquery.ui.sortable.js │ │ │ ├── jquery.ui.spinner.js │ │ │ ├── jquery.ui.tabs.js │ │ │ ├── jquery.ui.tooltip.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── minified │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.min.js │ │ │ ├── jquery.ui.datepicker-af.min.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js │ │ │ ├── jquery.ui.datepicker-ar.min.js │ │ │ ├── jquery.ui.datepicker-az.min.js │ │ │ ├── jquery.ui.datepicker-be.min.js │ │ │ ├── jquery.ui.datepicker-bg.min.js │ │ │ ├── jquery.ui.datepicker-bs.min.js │ │ │ ├── jquery.ui.datepicker-ca.min.js │ │ │ ├── jquery.ui.datepicker-cs.min.js │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js │ │ │ ├── jquery.ui.datepicker-da.min.js │ │ │ ├── jquery.ui.datepicker-de.min.js │ │ │ ├── jquery.ui.datepicker-el.min.js │ │ │ ├── jquery.ui.datepicker-en-AU.min.js │ │ │ ├── jquery.ui.datepicker-en-GB.min.js │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js │ │ │ ├── jquery.ui.datepicker-eo.min.js │ │ │ ├── jquery.ui.datepicker-es.min.js │ │ │ ├── jquery.ui.datepicker-et.min.js │ │ │ ├── jquery.ui.datepicker-eu.min.js │ │ │ ├── jquery.ui.datepicker-fa.min.js │ │ │ ├── jquery.ui.datepicker-fi.min.js │ │ │ ├── jquery.ui.datepicker-fo.min.js │ │ │ ├── jquery.ui.datepicker-fr-CA.min.js │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js │ │ │ ├── jquery.ui.datepicker-fr.min.js │ │ │ ├── jquery.ui.datepicker-gl.min.js │ │ │ ├── jquery.ui.datepicker-he.min.js │ │ │ ├── jquery.ui.datepicker-hi.min.js │ │ │ ├── jquery.ui.datepicker-hr.min.js │ │ │ ├── jquery.ui.datepicker-hu.min.js │ │ │ ├── jquery.ui.datepicker-hy.min.js │ │ │ ├── jquery.ui.datepicker-id.min.js │ │ │ ├── jquery.ui.datepicker-is.min.js │ │ │ ├── jquery.ui.datepicker-it.min.js │ │ │ ├── jquery.ui.datepicker-ja.min.js │ │ │ ├── jquery.ui.datepicker-ka.min.js │ │ │ ├── jquery.ui.datepicker-kk.min.js │ │ │ ├── jquery.ui.datepicker-km.min.js │ │ │ ├── jquery.ui.datepicker-ko.min.js │ │ │ ├── jquery.ui.datepicker-ky.min.js │ │ │ ├── jquery.ui.datepicker-lb.min.js │ │ │ ├── jquery.ui.datepicker-lt.min.js │ │ │ ├── jquery.ui.datepicker-lv.min.js │ │ │ ├── jquery.ui.datepicker-mk.min.js │ │ │ ├── jquery.ui.datepicker-ml.min.js │ │ │ ├── jquery.ui.datepicker-ms.min.js │ │ │ ├── jquery.ui.datepicker-nb.min.js │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js │ │ │ ├── jquery.ui.datepicker-nl.min.js │ │ │ ├── jquery.ui.datepicker-nn.min.js │ │ │ ├── jquery.ui.datepicker-no.min.js │ │ │ ├── jquery.ui.datepicker-pl.min.js │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js │ │ │ ├── jquery.ui.datepicker-pt.min.js │ │ │ ├── jquery.ui.datepicker-rm.min.js │ │ │ ├── jquery.ui.datepicker-ro.min.js │ │ │ ├── jquery.ui.datepicker-ru.min.js │ │ │ ├── jquery.ui.datepicker-sk.min.js │ │ │ ├── jquery.ui.datepicker-sl.min.js │ │ │ ├── jquery.ui.datepicker-sq.min.js │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js │ │ │ ├── jquery.ui.datepicker-sr.min.js │ │ │ ├── jquery.ui.datepicker-sv.min.js │ │ │ ├── jquery.ui.datepicker-ta.min.js │ │ │ ├── jquery.ui.datepicker-th.min.js │ │ │ ├── jquery.ui.datepicker-tj.min.js │ │ │ ├── jquery.ui.datepicker-tr.min.js │ │ │ ├── jquery.ui.datepicker-uk.min.js │ │ │ ├── jquery.ui.datepicker-vi.min.js │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js │ │ │ └── jquery.ui.datepicker-zh-TW.min.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.ui.accordion.min.js │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ ├── jquery.ui.button.min.js │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ ├── jquery.ui.dialog.min.js │ │ │ ├── jquery.ui.draggable.min.js │ │ │ ├── jquery.ui.droppable.min.js │ │ │ ├── jquery.ui.effect-blind.min.js │ │ │ ├── jquery.ui.effect-bounce.min.js │ │ │ ├── jquery.ui.effect-clip.min.js │ │ │ ├── jquery.ui.effect-drop.min.js │ │ │ ├── jquery.ui.effect-explode.min.js │ │ │ ├── jquery.ui.effect-fade.min.js │ │ │ ├── jquery.ui.effect-fold.min.js │ │ │ ├── jquery.ui.effect-highlight.min.js │ │ │ ├── jquery.ui.effect-pulsate.min.js │ │ │ ├── jquery.ui.effect-scale.min.js │ │ │ ├── jquery.ui.effect-shake.min.js │ │ │ ├── jquery.ui.effect-slide.min.js │ │ │ ├── jquery.ui.effect-transfer.min.js │ │ │ ├── jquery.ui.effect.min.js │ │ │ ├── jquery.ui.menu.min.js │ │ │ ├── jquery.ui.mouse.min.js │ │ │ ├── jquery.ui.position.min.js │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ ├── jquery.ui.resizable.min.js │ │ │ ├── jquery.ui.selectable.min.js │ │ │ ├── jquery.ui.slider.min.js │ │ │ ├── jquery.ui.sortable.min.js │ │ │ ├── jquery.ui.spinner.min.js │ │ │ ├── jquery.ui.tabs.min.js │ │ │ ├── jquery.ui.tooltip.min.js │ │ │ └── jquery.ui.widget.min.js │ ├── index.html │ └── js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-ui-1.10.4.custom.js │ │ └── jquery-ui-1.10.4.custom.min.js ├── jsfeat-min.js ├── lock.jpg ├── magic.mp3 ├── numeric-1.2.6.min.js ├── objectui.js ├── outofcar1.png ├── outofcar2.png ├── outofcar3.png ├── outsideoccluded.jpg ├── preload.js ├── secret.png ├── sequence1.jpg ├── sequence2.jpg ├── sequence3.jpg ├── sequence4.jpg ├── shortcut.js ├── stylesheet.css ├── tight-bad.jpg ├── tight-good.jpg ├── tracks.js ├── ui.js ├── videoplayer.js └── visualizer.js ├── qa.py ├── requirements-local.txt ├── requirements.txt ├── server.py ├── start_server.py ├── trackutils.py ├── vatic-install-local.sh ├── vatic-install.sh ├── velocity.py └── visualize_merge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/README.md -------------------------------------------------------------------------------- /arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/arial.ttf -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/cli.py -------------------------------------------------------------------------------- /config.py-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/config.py-example -------------------------------------------------------------------------------- /dumptools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/dumptools.py -------------------------------------------------------------------------------- /match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/match.py -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/merge.py -------------------------------------------------------------------------------- /merge_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/merge_spatial.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/models.py -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | turkic 2 | -------------------------------------------------------------------------------- /public/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/admin.html -------------------------------------------------------------------------------- /public/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/admin.js -------------------------------------------------------------------------------- /public/adminstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/adminstyle.css -------------------------------------------------------------------------------- /public/autotrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/autotrack.js -------------------------------------------------------------------------------- /public/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/bootstrap.js -------------------------------------------------------------------------------- /public/box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/box.jpg -------------------------------------------------------------------------------- /public/classify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/classify.jpg -------------------------------------------------------------------------------- /public/entering1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/entering1.png -------------------------------------------------------------------------------- /public/entering2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/entering2.png -------------------------------------------------------------------------------- /public/entering3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/entering3.png -------------------------------------------------------------------------------- /public/entering4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/entering4.png -------------------------------------------------------------------------------- /public/everyobject.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/everyobject.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/frames/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.htaccess 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/frames/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/frames/.htaccess -------------------------------------------------------------------------------- /public/homography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/homography.html -------------------------------------------------------------------------------- /public/homography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/homography.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/index.html -------------------------------------------------------------------------------- /public/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/instructions.js -------------------------------------------------------------------------------- /public/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/job.js -------------------------------------------------------------------------------- /public/jquery-migrate-1.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-migrate-1.2.1.min.js -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/animated-overlay.gif -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.css -------------------------------------------------------------------------------- /public/jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/AUTHORS.txt -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/Gruntfile.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/MIT-LICENSE.txt -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/README.md -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/collapsible.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/custom-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/custom-icons.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/fillspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/fillspace.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/hoverintent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/hoverintent.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/no-auto-height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/no-auto-height.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/accordion/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/accordion/sortable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/addClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/addClass/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/addClass/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/animate/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/animate/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/animate/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/categories.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/combobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/combobox.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/custom-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/custom-data.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/folding.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/london.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/london.xml -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/maxheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/maxheight.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/multiple-remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/multiple-remote.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/multiple.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/remote-jsonp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/remote-jsonp.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/remote-with-cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/remote-with-cache.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/remote.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/search.php -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/autocomplete/xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/autocomplete/xml.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/checkbox.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/icons.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/radio.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/splitbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/splitbutton.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/button/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/button/toolbar.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/alt-field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/alt-field.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/animation.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/buttonbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/buttonbar.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/date-formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/date-formats.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/date-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/date-range.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/inline.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/localization.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/min-max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/min-max.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/other-months.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/other-months.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/datepicker/show-week.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/datepicker/show-week.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/demos.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/animated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/animated.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/modal-confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/modal-confirmation.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/modal-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/modal-form.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/modal-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/modal-message.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/dialog/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/dialog/modal.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/constrain-movement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/constrain-movement.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/cursor-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/cursor-style.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/delay-start.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/events.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/handle.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/revert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/revert.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/scroll.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/snap-to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/snap-to.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/sortable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/draggable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/draggable/visual-feedback.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/accepted-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/accepted-elements.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/photo-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/photo-manager.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/propagation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/propagation.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/revert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/revert.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/shopping-cart.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/droppable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/droppable/visual-feedback.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/effect/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/effect/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/effect/easing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/effect/easing.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/effect/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/hide/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/hide/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/hide/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/menu/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/menu/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/menu/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/menu/icons.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/menu/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/position/cycler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/position/cycler.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/position/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/position/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/position/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/progressbar/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/progressbar/indeterminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/progressbar/indeterminate.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/progressbar/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/progressbar/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/progressbar/label.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/removeClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/removeClass/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/removeClass/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/animate.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/aspect-ratio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/aspect-ratio.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/constrain-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/constrain-area.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/delay-start.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/helper.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/max-min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/max-min.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/snap-to-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/snap-to-grid.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/synchronous-resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/synchronous-resize.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/textarea.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/resizable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/resizable/visual-feedback.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/selectable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/selectable/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/selectable/display-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/selectable/display-grid.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/selectable/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/selectable/serialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/selectable/serialize.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/show/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/show/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/show/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/colorpicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/colorpicker.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/hotelrooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/hotelrooms.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/multiple-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/multiple-vertical.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/range-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/range-vertical.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/range.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/rangemax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/rangemax.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/rangemin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/rangemin.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/side-scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/side-scroll.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/slider-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/slider-vertical.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/slider/steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/slider/steps.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/connect-lists-through-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/connect-lists-through-tabs.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/connect-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/connect-lists.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/delay-start.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/display-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/display-grid.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/empty-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/empty-lists.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/items.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/placeholder.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/sortable/portlets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/sortable/portlets.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/currency.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/decimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/decimal.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/latlong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/latlong.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/overflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/overflow.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/spinner/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/spinner/time.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/switchClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/switchClass/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/switchClass/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/ajax.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/ajax/content1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/ajax/content1.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/ajax/content2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/ajax/content2.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/bottom.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/collapsible.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/manipulation.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/mouseover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/mouseover.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/sortable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tabs/vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tabs/vertical.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/toggle/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/toggle/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/toggle/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/toggleClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/toggleClass/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/toggleClass/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/ajax/content1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/ajax/content1.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/ajax/content2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/ajax/content2.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/custom-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/custom-animation.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/custom-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/custom-content.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/custom-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/custom-style.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/forms.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/images/st-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/images/st-stephens.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/images/tower-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/images/tower-bridge.jpg -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/tracking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/tracking.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/tooltip/video-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/tooltip/video-player.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/widget/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/widget/default.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/demos/widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/demos/widget/index.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/accordion.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/autocomplete.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/blind-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/blind-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/bounce-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/bounce-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/button.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/clip-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/clip-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/datepicker.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/dialog.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/draggable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/draggable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/drop-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/drop-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/droppable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/droppable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/explode-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/explode-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/fade-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/fade-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/fold-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/fold-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/highlight-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/highlight-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/jQuery.widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/jQuery.widget.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/menu.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/mouse.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/position.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/progressbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/progressbar.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/puff-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/puff-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/pulsate-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/pulsate-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/resizable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/resizable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/scale-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/scale-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/selectable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/selectable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/shake-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/shake-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/size-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/size-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/slide-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/slide-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/slider.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/sortable.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/spinner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/spinner.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/tabs.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/tooltip.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/docs/transfer-effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/docs/transfer-effect.html -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/globalize.culture.de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/globalize.culture.de-DE.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/globalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/globalize.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/jquery.mousewheel.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/jshint.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/qunit.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/external/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/external/qunit.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/jquery-1.10.2.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/package.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.menu.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.spinner.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.menu.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.spinner.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/base/minified/jquery.ui.tooltip.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/animated-overlay.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery-ui.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.accordion.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.all.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.base.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.button.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.core.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.dialog.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.menu.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.resizable.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.selectable.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.slider.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.spinner.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.tabs.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.theme.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.menu.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.spinner.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/themes/smoothness/minified/jquery.ui.tooltip.min.css -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.accordion.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.accordion.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.autocomplete.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.autocomplete.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.button.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.button.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.core.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.core.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.datepicker.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.datepicker.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.dialog.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.dialog.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.draggable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.draggable.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.droppable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.droppable.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-blind.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-blind.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-bounce.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-bounce.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-clip.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-clip.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-drop.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-drop.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-explode.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-explode.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-fade.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-fade.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-fold.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-fold.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-highlight.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-highlight.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-scale.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-scale.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-shake.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-shake.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-slide.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-slide.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect-transfer.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect-transfer.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.effect.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.effect.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.menu.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.menu.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.mouse.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.mouse.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.position.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.position.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.progressbar.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.progressbar.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.resizable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.resizable.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.selectable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.selectable.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.slider.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.slider.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.sortable.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.sortable.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.spinner.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.spinner.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.tabs.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.tabs.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.tooltip.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.tooltip.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui.widget.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui.widget.jquery.json -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery-ui.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery-ui.custom.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.accordion.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.autocomplete.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.button.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.core.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.dialog.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.draggable.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.droppable.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.effect.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.menu.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.position.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.progressbar.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.resizable.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.selectable.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.slider.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.sortable.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.spinner.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.tabs.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.tooltip.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.accordion.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.autocomplete.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.button.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.button.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.dialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.dialog.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.menu.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.progressbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.progressbar.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.resizable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.resizable.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.selectable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.selectable.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.slider.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.sortable.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.spinner.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.spinner.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.tooltip.min.js -------------------------------------------------------------------------------- /public/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js -------------------------------------------------------------------------------- /public/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/index.html -------------------------------------------------------------------------------- /public/jquery-ui/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /public/jquery-ui/js/jquery-ui-1.10.4.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/js/jquery-ui-1.10.4.custom.js -------------------------------------------------------------------------------- /public/jquery-ui/js/jquery-ui-1.10.4.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jquery-ui/js/jquery-ui-1.10.4.custom.min.js -------------------------------------------------------------------------------- /public/jsfeat-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/jsfeat-min.js -------------------------------------------------------------------------------- /public/lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/lock.jpg -------------------------------------------------------------------------------- /public/magic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/magic.mp3 -------------------------------------------------------------------------------- /public/numeric-1.2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/numeric-1.2.6.min.js -------------------------------------------------------------------------------- /public/objectui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/objectui.js -------------------------------------------------------------------------------- /public/outofcar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/outofcar1.png -------------------------------------------------------------------------------- /public/outofcar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/outofcar2.png -------------------------------------------------------------------------------- /public/outofcar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/outofcar3.png -------------------------------------------------------------------------------- /public/outsideoccluded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/outsideoccluded.jpg -------------------------------------------------------------------------------- /public/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/preload.js -------------------------------------------------------------------------------- /public/secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/secret.png -------------------------------------------------------------------------------- /public/sequence1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/sequence1.jpg -------------------------------------------------------------------------------- /public/sequence2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/sequence2.jpg -------------------------------------------------------------------------------- /public/sequence3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/sequence3.jpg -------------------------------------------------------------------------------- /public/sequence4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/sequence4.jpg -------------------------------------------------------------------------------- /public/shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/shortcut.js -------------------------------------------------------------------------------- /public/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/stylesheet.css -------------------------------------------------------------------------------- /public/tight-bad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/tight-bad.jpg -------------------------------------------------------------------------------- /public/tight-good.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/tight-good.jpg -------------------------------------------------------------------------------- /public/tracks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/tracks.js -------------------------------------------------------------------------------- /public/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/ui.js -------------------------------------------------------------------------------- /public/videoplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/videoplayer.js -------------------------------------------------------------------------------- /public/visualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/public/visualizer.js -------------------------------------------------------------------------------- /qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/qa.py -------------------------------------------------------------------------------- /requirements-local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/requirements-local.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/server.py -------------------------------------------------------------------------------- /start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/start_server.py -------------------------------------------------------------------------------- /trackutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/trackutils.py -------------------------------------------------------------------------------- /vatic-install-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/vatic-install-local.sh -------------------------------------------------------------------------------- /vatic-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/vatic-install.sh -------------------------------------------------------------------------------- /velocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/velocity.py -------------------------------------------------------------------------------- /visualize_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoherty/vatic/HEAD/visualize_merge.py --------------------------------------------------------------------------------