Content
24 | 25 | 26 |├── .csscomb.json ├── .csslintrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .mailmap ├── .travis.yml ├── AUTHORS.txt ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE-INFO.min.txt ├── LICENSE-INFO.txt ├── LICENSE.txt ├── README.md ├── bower.json ├── build ├── files.js ├── filter.js ├── release.js ├── tasks │ ├── alias.js │ ├── config.js │ ├── cssbuild.js │ ├── modules.js │ └── options │ │ ├── bowercopy.js │ │ ├── clean.js │ │ ├── compress.js │ │ ├── concat.js │ │ ├── connect.js │ │ ├── copy.js │ │ ├── coveralls.js │ │ ├── cssbuild.js │ │ ├── csscomb.js │ │ ├── csslint.js │ │ ├── cssmin.js │ │ ├── esformatter.js │ │ ├── hash-manifest.js │ │ ├── htmllint.js │ │ ├── jscs.js │ │ ├── jshint.js │ │ ├── php.js │ │ ├── qunit.js │ │ ├── qunit_junit.js │ │ ├── requirejs.js │ │ ├── spider.js │ │ └── uglify.js ├── wrap.end └── wrap.start ├── combine.php ├── css ├── structure │ ├── jquery.mobile.accordion.css │ ├── jquery.mobile.collapsible.css │ ├── jquery.mobile.controlgroup.css │ ├── jquery.mobile.core.css │ ├── jquery.mobile.dialog.css │ ├── jquery.mobile.filterable.css │ ├── jquery.mobile.fixedToolbar.css │ ├── jquery.mobile.forms.checkboxradio.css │ ├── jquery.mobile.forms.fieldcontain.css │ ├── jquery.mobile.forms.flipswitch.css │ ├── jquery.mobile.forms.rangeslider.css │ ├── jquery.mobile.forms.select.css │ ├── jquery.mobile.forms.slider.css │ ├── jquery.mobile.forms.slider.tooltip.css │ ├── jquery.mobile.forms.textinput.autogrow.css │ ├── jquery.mobile.forms.textinput.css │ ├── jquery.mobile.grid.css │ ├── jquery.mobile.listview.css │ ├── jquery.mobile.navbar.css │ ├── jquery.mobile.panel.css │ ├── jquery.mobile.popup.arrow.css │ ├── jquery.mobile.popup.css │ ├── jquery.mobile.structure.css │ ├── jquery.mobile.table.columntoggle.css │ ├── jquery.mobile.table.columntoggle.popup.css │ ├── jquery.mobile.table.css │ ├── jquery.mobile.table.reflow.css │ ├── jquery.mobile.tabs.css │ ├── jquery.mobile.toolbar.css │ ├── jquery.mobile.transition.css │ ├── jquery.mobile.transition.fade.css │ ├── jquery.mobile.transition.flip.css │ ├── jquery.mobile.transition.flow.css │ ├── jquery.mobile.transition.pop.css │ ├── jquery.mobile.transition.slide.css │ ├── jquery.mobile.transition.slidedown.css │ ├── jquery.mobile.transition.slidefade.css │ ├── jquery.mobile.transition.slidein.keyframes.css │ ├── jquery.mobile.transition.slideout.keyframes.css │ ├── jquery.mobile.transition.slideup.css │ ├── jquery.mobile.transition.turn.css │ └── jquery.mobile.transition.visuals.css └── themes │ └── default │ ├── images │ ├── ajax-loader.gif │ ├── icons-png │ │ ├── action-black.png │ │ ├── action-white.png │ │ ├── alert-black.png │ │ ├── alert-white.png │ │ ├── arrow-d-black.png │ │ ├── arrow-d-l-black.png │ │ ├── arrow-d-l-white.png │ │ ├── arrow-d-r-black.png │ │ ├── arrow-d-r-white.png │ │ ├── arrow-d-white.png │ │ ├── arrow-l-black.png │ │ ├── arrow-l-white.png │ │ ├── arrow-r-black.png │ │ ├── arrow-r-white.png │ │ ├── arrow-u-black.png │ │ ├── arrow-u-l-black.png │ │ ├── arrow-u-l-white.png │ │ ├── arrow-u-r-black.png │ │ ├── arrow-u-r-white.png │ │ ├── arrow-u-white.png │ │ ├── audio-black.png │ │ ├── audio-white.png │ │ ├── back-black.png │ │ ├── back-white.png │ │ ├── bars-black.png │ │ ├── bars-white.png │ │ ├── bullets-black.png │ │ ├── bullets-white.png │ │ ├── calendar-black.png │ │ ├── calendar-white.png │ │ ├── camera-black.png │ │ ├── camera-white.png │ │ ├── caret-d-black.png │ │ ├── caret-d-white.png │ │ ├── caret-l-black.png │ │ ├── caret-l-white.png │ │ ├── caret-r-black.png │ │ ├── caret-r-white.png │ │ ├── caret-u-black.png │ │ ├── caret-u-white.png │ │ ├── check-black.png │ │ ├── check-white.png │ │ ├── clock-black.png │ │ ├── clock-white.png │ │ ├── cloud-black.png │ │ ├── cloud-white.png │ │ ├── comment-black.png │ │ ├── comment-white.png │ │ ├── delete-black.png │ │ ├── delete-white.png │ │ ├── edit-black.png │ │ ├── edit-white.png │ │ ├── eye-black.png │ │ ├── eye-white.png │ │ ├── forbidden-black.png │ │ ├── forbidden-white.png │ │ ├── forward-black.png │ │ ├── forward-white.png │ │ ├── gear-black.png │ │ ├── gear-white.png │ │ ├── grid-black.png │ │ ├── grid-white.png │ │ ├── heart-black.png │ │ ├── heart-white.png │ │ ├── home-black.png │ │ ├── home-white.png │ │ ├── info-black.png │ │ ├── info-white.png │ │ ├── location-black.png │ │ ├── location-white.png │ │ ├── lock-black.png │ │ ├── lock-white.png │ │ ├── mail-black.png │ │ ├── mail-white.png │ │ ├── minus-black.png │ │ ├── minus-white.png │ │ ├── navigation-black.png │ │ ├── navigation-white.png │ │ ├── phone-black.png │ │ ├── phone-white.png │ │ ├── plus-black.png │ │ ├── plus-white.png │ │ ├── power-black.png │ │ ├── power-white.png │ │ ├── recycle-black.png │ │ ├── recycle-white.png │ │ ├── refresh-black.png │ │ ├── refresh-white.png │ │ ├── search-black.png │ │ ├── search-white.png │ │ ├── shop-black.png │ │ ├── shop-white.png │ │ ├── star-black.png │ │ ├── star-white.png │ │ ├── tag-black.png │ │ ├── tag-white.png │ │ ├── user-black.png │ │ ├── user-white.png │ │ ├── video-black.png │ │ └── video-white.png │ └── icons-svg │ │ ├── action-black.svg │ │ ├── action-white.svg │ │ ├── alert-black.svg │ │ ├── alert-white.svg │ │ ├── arrow-d-black.svg │ │ ├── arrow-d-l-black.svg │ │ ├── arrow-d-l-white.svg │ │ ├── arrow-d-r-black.svg │ │ ├── arrow-d-r-white.svg │ │ ├── arrow-d-white.svg │ │ ├── arrow-l-black.svg │ │ ├── arrow-l-white.svg │ │ ├── arrow-r-black.svg │ │ ├── arrow-r-white.svg │ │ ├── arrow-u-black.svg │ │ ├── arrow-u-l-black.svg │ │ ├── arrow-u-l-white.svg │ │ ├── arrow-u-r-black.svg │ │ ├── arrow-u-r-white.svg │ │ ├── arrow-u-white.svg │ │ ├── audio-black.svg │ │ ├── audio-white.svg │ │ ├── back-black.svg │ │ ├── back-white.svg │ │ ├── bars-black.svg │ │ ├── bars-white.svg │ │ ├── bullets-black.svg │ │ ├── bullets-white.svg │ │ ├── calendar-black.svg │ │ ├── calendar-white.svg │ │ ├── camera-black.svg │ │ ├── camera-white.svg │ │ ├── caret-d-black.svg │ │ ├── caret-d-white.svg │ │ ├── caret-l-black.svg │ │ ├── caret-l-white.svg │ │ ├── caret-r-black.svg │ │ ├── caret-r-white.svg │ │ ├── caret-u-black.svg │ │ ├── caret-u-white.svg │ │ ├── check-black.svg │ │ ├── check-white.svg │ │ ├── clock-black.svg │ │ ├── clock-white.svg │ │ ├── cloud-black.svg │ │ ├── cloud-white.svg │ │ ├── comment-black.svg │ │ ├── comment-white.svg │ │ ├── delete-black.svg │ │ ├── delete-white.svg │ │ ├── edit-black.svg │ │ ├── edit-white.svg │ │ ├── eye-black.svg │ │ ├── eye-white.svg │ │ ├── forbidden-black.svg │ │ ├── forbidden-white.svg │ │ ├── forward-black.svg │ │ ├── forward-white.svg │ │ ├── gear-black.svg │ │ ├── gear-white.svg │ │ ├── grid-black.svg │ │ ├── grid-white.svg │ │ ├── heart-black.svg │ │ ├── heart-white.svg │ │ ├── home-black.svg │ │ ├── home-white.svg │ │ ├── info-black.svg │ │ ├── info-white.svg │ │ ├── location-black.svg │ │ ├── location-white.svg │ │ ├── lock-black.svg │ │ ├── lock-white.svg │ │ ├── mail-black.svg │ │ ├── mail-white.svg │ │ ├── minus-black.svg │ │ ├── minus-white.svg │ │ ├── navigation-black.svg │ │ ├── navigation-white.svg │ │ ├── phone-black.svg │ │ ├── phone-white.svg │ │ ├── plus-black.svg │ │ ├── plus-white.svg │ │ ├── power-black.svg │ │ ├── power-white.svg │ │ ├── recycle-black.svg │ │ ├── recycle-white.svg │ │ ├── refresh-black.svg │ │ ├── refresh-white.svg │ │ ├── search-black.svg │ │ ├── search-white.svg │ │ ├── shop-black.svg │ │ ├── shop-white.svg │ │ ├── star-black.svg │ │ ├── star-white.svg │ │ ├── tag-black.svg │ │ ├── tag-white.svg │ │ ├── user-black.svg │ │ ├── user-white.svg │ │ ├── video-black.svg │ │ └── video-white.svg │ ├── index.php │ ├── jquery.mobile.css │ ├── jquery.mobile.external-png.css │ ├── jquery.mobile.icons.css │ ├── jquery.mobile.icons.external-png.css │ ├── jquery.mobile.icons.inline-png.css │ ├── jquery.mobile.icons.inline-svg.css │ ├── jquery.mobile.inline-png.css │ ├── jquery.mobile.inline-svg.css │ └── jquery.mobile.theme.css ├── demos ├── _assets │ ├── css │ │ └── jqm-demos.css │ ├── img │ │ ├── album-af.jpg │ │ ├── album-ag.jpg │ │ ├── album-bb.jpg │ │ ├── album-bk.jpg │ │ ├── album-hc.jpg │ │ ├── album-k.jpg │ │ ├── album-mg.jpg │ │ ├── album-ok.jpg │ │ ├── album-p.jpg │ │ ├── album-rh.jpg │ │ ├── album-ws.jpg │ │ ├── album-xx.jpg │ │ ├── apple.png │ │ ├── bg-pattern.png │ │ ├── bike.jpg │ │ ├── blackberry_10.png │ │ ├── bmw-thumb.jpg │ │ ├── bmw.jpg │ │ ├── buenosaires.jpg │ │ ├── capetown.jpg │ │ ├── de.png │ │ ├── devices.png │ │ ├── fi.png │ │ ├── firefox-logo.png │ │ ├── firefox_os.png │ │ ├── galaxy_express.png │ │ ├── gb.png │ │ ├── gf.png │ │ ├── github.png │ │ ├── glyphish-icons │ │ │ ├── 09-chat2.png │ │ │ ├── 100-coffee.png │ │ │ ├── 18-envelope.png │ │ │ ├── 19-gear.png │ │ │ ├── 21-skull.png │ │ │ ├── 30-key.png │ │ │ ├── 34-coffee.png │ │ │ ├── 88-beermug.png │ │ │ └── Read me first - license.txt │ │ ├── jqm-icon.png │ │ ├── jquerymobile-logo.png │ │ ├── landrover-thumb.jpg │ │ ├── landrover.jpg │ │ ├── lumia_800.png │ │ ├── newyork.jpg │ │ ├── nexus_7.png │ │ ├── paris.jpg │ │ ├── phone_galaxy3.png │ │ ├── phone_iphone5.png │ │ ├── phone_lumia920.png │ │ ├── phone_onex.png │ │ ├── photo-landscape.jpg │ │ ├── photo-portrait.jpg │ │ ├── photo-run.jpeg │ │ ├── seoul.jpg │ │ ├── sj.png │ │ ├── sydney.jpg │ │ ├── tesla-thumb.jpg │ │ ├── tesla.jpg │ │ ├── tizen.png │ │ └── us.png │ └── js │ │ ├── h2widget.js │ │ ├── index.php │ │ ├── jqm-demos.js │ │ ├── syntaxhighlighter.js │ │ └── view-source.js ├── _search │ └── index.php ├── accordion │ └── index.php ├── backbone-requirejs │ ├── backbone-require.html │ ├── index.php │ └── js │ │ ├── collections │ │ └── CategoriesCollection.js │ │ ├── main.js │ │ ├── models │ │ └── CategoryModel.js │ │ ├── routers │ │ └── mobileRouter.js │ │ └── views │ │ └── CategoryView.js ├── body-bar-classes │ └── index.php ├── button │ └── index.php ├── checkboxradio-checkbox │ └── index.php ├── checkboxradio-radio │ └── index.php ├── collapsible-dynamic │ └── index.php ├── collapsible │ └── index.php ├── collapsibleset │ └── index.php ├── controlgroup-dynamic │ └── index.php ├── controlgroup │ └── index.php ├── datepicker │ └── index.php ├── external-widgets │ ├── index.php │ ├── info.php │ ├── page-b.php │ ├── page-c.php │ ├── page-d.php │ └── shared-widget-init.js ├── favicon.ico ├── filterable │ └── index.php ├── flipswitch │ └── index.php ├── forms-disabled │ └── index.php ├── forms-field-contain │ └── index.php ├── forms-gallery │ └── index.php ├── forms-label-hidden-accessible │ └── index.php ├── forms │ └── index.php ├── grids-buttons │ └── index.php ├── grids-custom-responsive │ └── index.php ├── grids │ └── index.php ├── icons-grunticon │ └── index.php ├── icons │ └── index.php ├── index.php ├── intro │ └── index.php ├── jqm-contents.php ├── jqm-navmenu.php ├── jqm-search.php ├── listview-autocomplete-remote │ └── index.php ├── listview-autocomplete │ └── index.php ├── listview-autodividers-linkbar │ ├── autodividers-linkbar-demo.html │ ├── autodividers-linkbar.css │ ├── autodividers-linkbar.js │ └── index.php ├── listview-autodividers-selector │ └── index.php ├── listview-collapsible-item-flat │ └── index.php ├── listview-collapsible-item-indented │ └── index.php ├── listview-grid │ ├── index.php │ ├── listview-grid.css │ └── listview-grid.html ├── listview-nested-lists │ └── index.php ├── listview │ └── index.php ├── loader │ └── index.php ├── map-geolocation │ └── index.php ├── map-list-toggle │ ├── index.php │ ├── jquery.gmap.js │ └── showMore.html ├── navbar │ └── index.php ├── navigation-hash-processing │ └── index.php ├── navigation-linking-pages │ └── index.php ├── navigation-php-redirect │ ├── index.php │ ├── redirect-target.php │ ├── redirect.php │ └── source.php ├── navigation │ ├── demo.js │ └── index.php ├── old-faq-pages │ ├── controls-in-header-footer.php │ ├── disabling-a-button-does-not-work.php │ ├── dom-ready-not-working.php │ ├── how-can-i-stop-auto-enhancement-of-a-block-of-elements.php │ ├── how-can-i-stop-auto-enhancement-of-elements.php │ ├── how-configure-phonegap-cordova.php │ ├── how-do-i-control-page-titles.php │ ├── how-do-i-load-a-page.php │ ├── how-do-i-scroll-to-a-position.php │ ├── how-do-i-turn-off-url-hiding.php │ ├── how-do-i-use-touch-mouse-events.php │ ├── how-does-theming-work.php │ ├── index.php │ ├── injected-content-is-not-enhanced.php │ ├── my-html-5-inputs-look-different-in-browsers.php │ ├── my-range-search-input-type-is-being-changed.php │ ├── pass-query-params-to-page.php │ ├── pass-via-the-hash-to-page.php │ ├── scripts-and-styles-not-loading.php │ ├── sometimes-custom-select-shows-as-dialog-popup.php │ ├── the-application-cache-is-not-working.php │ ├── triggering-create-on-injected-content-does-not-work.php │ ├── updating-the-value-of-enhanced-form-elements-does-not-work.php │ ├── why-is-only-the-first-page-loaded.php │ └── why-wont-my-css-styles-apply-correctly-to-a-widget.php ├── page-events │ ├── alertevents-2.php │ ├── alertevents-3.php │ ├── alertevents.php │ ├── docs.php │ ├── index.php │ ├── logevents-2.php │ ├── logevents-3.php │ └── logevents.php ├── pages-dialog │ ├── dialog-alt.html │ ├── dialog-buttons.html │ ├── dialog-corners.html │ ├── dialog-noclosebtn.html │ ├── dialog-overlay.html │ ├── dialog-rightclosebtn.html │ ├── dialog-success.html │ ├── dialog-with-select.html │ ├── dialog.html │ └── index.php ├── pages-multi-page │ └── index.html ├── pages-single-page │ └── index.html ├── pages │ ├── index.php │ ├── samepagetransition.html │ └── startpage.html ├── panel-external-internal │ ├── index.html │ ├── page-b.html │ └── page-c.html ├── panel-external │ ├── index.php │ └── page-b.php ├── panel-fixed │ └── index.php ├── panel-responsive │ └── index.php ├── panel-styling │ └── index.php ├── panel-swipe-open │ └── index.php ├── panel │ └── index.php ├── popup-alignment │ ├── index.php │ └── popup.alignment.js ├── popup-arrow-size │ └── index.php ├── popup-dynamic │ └── index.php ├── popup-iframe │ ├── index.php │ ├── map.html │ ├── popup-iframe-map.js │ └── popup-iframe-video.js ├── popup-image-scaling │ ├── index.php │ └── popup-image-scaling.js ├── popup-outside-multipage │ └── index.php ├── popup │ └── index.php ├── rangeslider │ └── index.php ├── rwd │ └── index.php ├── selectmenu-custom │ └── index.php ├── selectmenu │ └── index.php ├── slider-flipswitch │ └── index.php ├── slider-tooltip │ └── index.php ├── slider │ └── index.php ├── swipe-list │ └── index.php ├── swipe-page │ ├── buenosaires.html │ ├── capetown.html │ ├── index.php │ ├── newyork.html │ ├── paris.html │ ├── seoul.html │ ├── swipe-page.css │ ├── swipe-page.js │ └── sydney.html ├── table-column-toggle-custom-ui │ └── index.php ├── table-column-toggle-example │ └── index.php ├── table-column-toggle-heading-groups │ └── index.php ├── table-column-toggle-options │ └── index.php ├── table-column-toggle │ └── index.php ├── table-reflow-heading-groups │ └── index.php ├── table-reflow-stripes-strokes │ └── index.php ├── table-reflow-styling │ └── index.php ├── table-reflow │ └── index.php ├── tabs │ ├── ajax-content-ignore.php │ ├── index.php │ └── tabbed-content.php ├── textinput │ └── index.php ├── theme-classic │ ├── images │ │ └── ajax-loader.gif │ ├── index.php │ └── theme-classic.css ├── theme-default │ └── index.php ├── toolbar-dynamic │ └── index.php ├── toolbar-external │ ├── index.php │ └── index2.php ├── toolbar-fixed-external │ └── index.php ├── toolbar-fixed-forms │ └── index.php ├── toolbar-fixed-fullscreen │ └── index.php ├── toolbar-fixed-persistent-optimized │ ├── index.php │ └── page-b.php ├── toolbar-fixed-persistent │ ├── index.php │ ├── page-b.php │ ├── page-c.php │ └── page-d.php ├── toolbar-fixed │ └── index.php ├── toolbar │ └── index.php └── transitions │ ├── index.php │ ├── page-transitions-dialog.php │ └── page-transitions-page.php ├── external ├── jquery-mobile-datepicker-wrapper │ ├── jquery.mobile.datepicker.css │ ├── jquery.mobile.datepicker.js │ └── jquery.mobile.datepicker.theme.css ├── jquery-ui │ ├── LICENSE.txt │ ├── LICENSE.txt~HEAD │ ├── LICENSE.txt~Widgets │ ├── MIT-LICENSE.txt │ ├── data.js │ ├── disable-selection.js │ ├── escape-selector.js │ ├── focusable.js │ ├── form-reset-mixin.js │ ├── form.js │ ├── ie.js │ ├── jquery-1-7.js │ ├── keycode.js │ ├── labels.js │ ├── plugin.js │ ├── safe-active-element.js │ ├── safe-blur.js │ ├── scroll-parent.js │ ├── tabbable.js │ ├── unique-id.js │ ├── version.js │ ├── widget.js │ └── widgets │ │ ├── accordion.js │ │ ├── button.js │ │ ├── checkboxradio.js │ │ ├── controlgroup.js │ │ ├── datepicker.js │ │ └── tabs.js ├── jquery │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── jshint │ └── jshint.js ├── qunit-assert-classes │ ├── LICENSE.txt │ └── qunit-assert-classes.js ├── qunit │ ├── LICENSE.txt │ ├── MIT-LICENSE.txt │ ├── qunit.css │ └── qunit.js └── requirejs │ ├── plugins │ ├── json.js │ └── text.js │ └── require.js ├── index.php ├── js ├── .jshintrc ├── animationComplete.js ├── core.js ├── data.js ├── defaults.js ├── degradeInputs.js ├── events.js ├── events │ ├── navigate.js │ ├── orientationchange.js │ ├── scroll.js │ ├── throttledresize.js │ └── touch.js ├── grid.js ├── helpers.js ├── index.php ├── init.js ├── jquery.mobile.js ├── jquery.tag.inserter.js ├── media.js ├── navigation.js ├── navigation │ ├── base.js │ ├── history.js │ ├── method.js │ ├── navigator.js │ └── path.js ├── nojs.js ├── ns.js ├── requirejs.config.js ├── support.js ├── support │ ├── orientation.js │ └── touch.js ├── transitions │ ├── concurrent.js │ ├── handlers.js │ ├── serial.js │ ├── transition.js │ ├── visuals.js │ └── visuals │ │ ├── flip.js │ │ ├── flow.js │ │ ├── pop.js │ │ ├── slide.js │ │ ├── slidedown.js │ │ ├── slidefade.js │ │ ├── slideup.js │ │ └── turn.js ├── vmouse.js ├── widget.js ├── widgets │ ├── accordion.js │ ├── addFirstLastClasses.js │ ├── collapsible.js │ ├── collapsibleSet.js │ ├── controlgroup.backcompat.js │ ├── controlgroup.js │ ├── controlgroup.selectmenu.js │ ├── enhancer.backcompat.js │ ├── enhancer.js │ ├── enhancer.widgetCrawler.js │ ├── filterable.js │ ├── fixedToolbar.backcompat.js │ ├── fixedToolbar.js │ ├── fixedToolbar.tapToggle.js │ ├── forms │ │ ├── autogrow.js │ │ ├── button.backcompat.js │ │ ├── button.js │ │ ├── checkboxradio.backcompat.js │ │ ├── checkboxradio.js │ │ ├── clearButton.js │ │ ├── flipswitch.backcompat.js │ │ ├── flipswitch.js │ │ ├── rangeslider.backcompat.js │ │ ├── rangeslider.js │ │ ├── reset.js │ │ ├── select.backcompat.js │ │ ├── select.custom.backcompat.js │ │ ├── select.custom.js │ │ ├── select.js │ │ ├── slider.backcompat.js │ │ ├── slider.js │ │ ├── slider.tooltip.js │ │ ├── textinput.backcompat.js │ │ └── textinput.js │ ├── listview.autodividers.js │ ├── listview.backcompat.js │ ├── listview.hidedividers.js │ ├── listview.js │ ├── loader.backcompat.js │ ├── loader.js │ ├── navbar.backcompat.js │ ├── navbar.js │ ├── navbar.morebutton.js │ ├── page.dialog.backcompat.js │ ├── page.dialog.js │ ├── page.js │ ├── pagecontainer.js │ ├── pagecontainer.transitions.js │ ├── panel.js │ ├── popup.arrow.backcompat.js │ ├── popup.arrow.js │ ├── popup.backcompat.js │ ├── popup.js │ ├── table.columntoggle.js │ ├── table.columntoggle.popup.js │ ├── table.js │ ├── table.reflow.js │ ├── tabs.ajax.js │ ├── toolbar.backcompat.js │ ├── toolbar.js │ ├── widget.backcompat.js │ └── widget.theme.js ├── zoom.js └── zoom │ └── iosorientationfix.js ├── package.json ├── tests ├── README.md ├── css │ ├── controlgroup │ │ ├── controlgroup_core.js │ │ └── index.html │ └── slider │ │ ├── index.html │ │ └── slider_core.js ├── functional │ ├── addrbar.html │ ├── autodividers.html │ ├── eventlogger.html │ ├── gridlayout.html │ ├── hashchange │ │ ├── dialog.html │ │ ├── dialog1.html │ │ ├── dialog2.html │ │ ├── hashchange.html │ │ ├── hashchange1.html │ │ └── hashchange2.html │ ├── orientation.html │ └── swipe.html ├── integration │ ├── animation-complete │ │ ├── animationComplete.js │ │ └── index.html │ ├── collapsible │ │ ├── collapsible_core.js │ │ └── index.html │ ├── core │ │ ├── core_scroll.js │ │ └── index.html │ ├── dialog-extension │ │ ├── backcompat-tests.html │ │ ├── backcompat_core.js │ │ ├── dialog-no-hash.html │ │ ├── dialog.bindMobileInit.js │ │ ├── dialog.bindMobileInitNoHash.js │ │ ├── dialog_basic.js │ │ ├── dialog_events.js │ │ ├── dialog_no_hash.js │ │ ├── index.html │ │ └── no-hash-tests.html │ ├── dialog │ │ ├── dialog-no-hash.html │ │ ├── dialog.bindMobileInit.js │ │ ├── dialog.bindMobileInitNoHash.js │ │ ├── dialog_basic.js │ │ ├── dialog_events.js │ │ ├── dialog_no_hash.js │ │ ├── index.html │ │ └── no-hash-tests.html │ ├── filterable │ │ ├── filterable_core.js │ │ └── index.html │ ├── fixed-toolbar │ │ ├── fixedToolbar.js │ │ ├── index.html │ │ └── toolbar.setFixedToolbar.js │ ├── flipswitch │ │ ├── flipswitch_core.js │ │ └── index.html │ ├── forms │ │ ├── forms_core.js │ │ ├── index.html │ │ ├── landing1.html │ │ └── landing2.html │ ├── listview │ │ ├── autodividers-tests.html │ │ ├── autodividers_core.js │ │ ├── backcompat-tests.html │ │ ├── backcompat_core.js │ │ ├── cache-tests │ │ │ ├── cached-nested.html │ │ │ ├── clear.html │ │ │ └── uncached-nested.html │ │ ├── index.html │ │ ├── listview_core.js │ │ └── sparing-setup-teardown.js │ ├── navigation │ │ ├── 100%test │ │ │ └── behind-the-percent.html │ │ ├── base-change.html │ │ ├── base-tests.html │ │ ├── base-tests │ │ │ ├── app-base │ │ │ │ ├── base-page-1.html │ │ │ │ └── base-page-2.html │ │ │ └── content │ │ │ │ ├── content-page-1.html │ │ │ │ └── content-page-2.html │ │ ├── blank.html │ │ ├── cached-external.html │ │ ├── click-handler-tests.html │ │ ├── click_handler_core.js │ │ ├── data-url-tests │ │ │ ├── data-url.html │ │ │ ├── nested.html │ │ │ ├── non-data-url.html │ │ │ ├── parentheses.html │ │ │ ├── reverse-attr.html │ │ │ └── single-quotes.html │ │ ├── dialog-param-test │ │ │ └── dialog-param.html │ │ ├── dialog.html │ │ ├── dynamic-base-disabled-tests.html │ │ ├── dynamic_base_disabled_core.js │ │ ├── event │ │ │ ├── beforenavigate-tests.html │ │ │ ├── early_popstate_handler.js │ │ │ ├── event_beforenavigate.js │ │ │ ├── event_core.js │ │ │ ├── index.html │ │ │ └── push-state-disabled-tests.html │ │ ├── external.html │ │ ├── file.html │ │ ├── form-tests │ │ │ ├── changepage-data.html │ │ │ └── form-no-action.html │ │ ├── go-to-dialog.html │ │ ├── index.html │ │ ├── init-query-param-hash-tests.html │ │ ├── init-tests │ │ │ ├── navigation_query_param_hash.js │ │ │ └── query-param-hash.html │ │ ├── method │ │ │ ├── index.html │ │ │ ├── method_core.js │ │ │ └── push-state-disabled-method-tests.html │ │ ├── multipage │ │ │ ├── index.html │ │ │ └── multipage_core.js │ │ ├── nav-helper.js │ │ ├── navigation_base.js │ │ ├── navigation_core.js │ │ ├── navigation_paths.js │ │ ├── path-tests │ │ │ ├── file.html │ │ │ ├── parent-ref.html │ │ │ ├── parent │ │ │ │ └── index.html │ │ │ └── sub-dir │ │ │ │ ├── file.html │ │ │ │ └── index.html │ │ ├── prefetched-dialog.html │ │ ├── prefetched.html │ │ ├── push-state-disabled-base-tests.html │ │ ├── push-state-disabled-tests.html │ │ ├── sequence │ │ │ ├── another-page.html │ │ │ ├── basic-dialog.html │ │ │ ├── basic-dialog1.html │ │ │ ├── index.html │ │ │ ├── page-styled-as-dialog.html │ │ │ ├── sequence-dialog-hash-key-tests.html │ │ │ ├── sequence-path1-path2-dialog-hash-key-tests.html │ │ │ ├── sequence-push-state-disabled-dialog-hash-key-tests.html │ │ │ ├── sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html │ │ │ ├── sequence-push-state-disabled-tests.html │ │ │ ├── sequence-redirect.html │ │ │ └── sequence_core.js │ │ ├── title1.html │ │ ├── title2.html │ │ └── title3.html │ ├── page │ │ ├── enhance.html │ │ ├── index.html │ │ ├── no-enhance.html │ │ ├── page_enhance_within.js │ │ ├── page_theme.js │ │ └── page_title_entity.js │ ├── pagecontainer │ │ ├── other-page.html │ │ ├── page-event-sequence-tests.html │ │ ├── page-load-failure-tests.html │ │ ├── page_event_sequence_core.js │ │ ├── page_load_failure_core.js │ │ ├── transition-choice-dialog-tests.html │ │ ├── transition-choice-tests.html │ │ ├── transition_choice_core.js │ │ └── transition_choice_dialog_core.js │ ├── panel │ │ ├── empty-page-tests.html │ │ ├── empty_page_core.js │ │ ├── external-panel-tests.html │ │ ├── external_panel_core.js │ │ ├── open-click-bubbling-tests.html │ │ ├── open_click_bubbling_core.js │ │ ├── panel-jump-to-top-tests.html │ │ ├── panel-stale-height-tests.html │ │ ├── panel_jump_to_top_core.js │ │ └── panel_stale_height_core.js │ ├── popup │ │ ├── back-two.html │ │ ├── backcompat-tests.html │ │ ├── backcompat_core.js │ │ ├── form-submission-tests.html │ │ ├── form_submission_core.js │ │ ├── index.html │ │ ├── other.html │ │ ├── popup-repositioning-tests.html │ │ ├── popup-sequence-test-dialog.html │ │ ├── popup.setFadeTransitition.js │ │ ├── popup_core.js │ │ ├── popup_repositioning_core.js │ │ ├── weird-characters-in-id-tests.html │ │ └── weird_characters_in_id_core.js │ ├── select │ │ ├── button-focus-tests.html │ │ ├── button_focus_core.js │ │ ├── cached-dom-cache-true.html │ │ ├── cached-tests.html │ │ ├── cached.html │ │ ├── defineKeepNative.js │ │ ├── index.html │ │ ├── select_cached.js │ │ ├── select_core.js │ │ ├── select_events.js │ │ ├── select_native.js │ │ ├── uncached-dom-cached-false.html │ │ ├── weird-characters-in-id-tests.html │ │ └── weird_characters_in_id_core.js │ ├── slider │ │ ├── index.html │ │ └── slider_core.js │ ├── swipe │ │ ├── binding-tests.html │ │ └── binding_tests_core.js │ ├── table │ │ ├── basic-table-tests.html │ │ ├── basic_table_core.js │ │ ├── columntoggle-destroy-tests.html │ │ ├── columntoggle-disable-tests.html │ │ ├── columntoggle-no-ui-tests.html │ │ ├── columntoggle-option-tests.html │ │ ├── columntoggle-prerendered-destroy-tests.html │ │ ├── columntoggle-prerendered-option-tests.html │ │ ├── columntoggle-table-tests.html │ │ ├── columntoggle_destroy_core.js │ │ ├── columntoggle_disable_core.js │ │ ├── columntoggle_no_ui_core.js │ │ ├── columntoggle_option_core.js │ │ ├── columntoggle_prerendered_destroy_core.js │ │ ├── columntoggle_prerendered_option_setup.js │ │ ├── columntoggle_table_core.js │ │ ├── grouped-tests.html │ │ ├── grouped_core.js │ │ ├── reflow-destroy-prerendered-tests.html │ │ ├── reflow-destroy-tests.html │ │ ├── reflow-table-tests.html │ │ ├── reflow_destroy_core.js │ │ ├── reflow_table_core.js │ │ ├── table-destroy-tests.html │ │ ├── table-prerendered-destroy-tests.html │ │ ├── table_destroy_core.js │ │ └── table_prerendered_destroy_core.js │ ├── toolbar │ │ ├── external-toolbar-tests.html │ │ ├── external_toolbar_core.js │ │ ├── fixed-toolbar-tests.html │ │ ├── fixed_toolbar_core.js │ │ ├── index.html │ │ └── toolbar_core.js │ └── transitions │ │ ├── index.html │ │ └── transitions_core.js ├── jqm-tests.css ├── jquery.setNameSpace.immediately.js ├── jquery.setNameSpace.js ├── jquery.testHelper.js ├── lib │ ├── bootstrap.js │ ├── qunit-assert-domequal.js │ └── qunit.js ├── no-bootstrap │ └── event │ │ ├── event.js │ │ └── index.html ├── requirejs.config.js └── unit │ ├── collapsible │ ├── collapsible_core.js │ └── index.html │ ├── content │ ├── content_core.js │ └── index.html │ ├── core │ ├── core.js │ └── index.html │ ├── degrade-inputs │ ├── degradeInputs.js │ └── index.html │ ├── enhancer │ ├── enhancer.js │ └── index.html │ ├── event │ ├── event_core.js │ ├── index.html │ ├── swipe-tests.html │ └── swipe_core.js │ ├── filterable │ ├── filterable_core.js │ └── index.html │ ├── fixed-toolbar │ ├── fixedToolbar.js │ └── index.html │ ├── flipswitch │ ├── backcompat-tests.html │ ├── flipswitch_backcompat.js │ ├── flipswitch_core.js │ └── index.html │ ├── helpers │ ├── helpers_core.js │ └── index.html │ ├── individual-modules │ ├── collapsible-tests.html │ ├── collapsible_core.js │ ├── collapsibleset-tests.html │ ├── collapsibleset_core.js │ ├── loader-tests.html │ ├── loader_core.js │ ├── rangeslider-tests.html │ ├── rangeslider_core.js │ ├── slider-tests.html │ ├── slider_core.js │ ├── table-tests.html │ ├── table_core.js │ ├── textinput-tests.html │ └── textinput_core.js │ ├── init │ ├── dialog-load-tests.html │ ├── index.html │ ├── init_core.js │ ├── init_core_nopage.js │ ├── init_dialog.js │ ├── no-autoinit-page-tests.html │ ├── no-autoinit-page-transitions-tests.html │ ├── no_autoinit_page_core.js │ ├── nopage.html │ ├── prepare.js │ ├── shared.js │ ├── weird file name-tests.html │ └── weird_file_name_core.js │ ├── kitchensink │ ├── index.html │ ├── kitchensink_core.js │ └── preinit.js │ ├── loader │ ├── backcompat-tests.html │ ├── backcompat_core.js │ ├── index.html │ └── loader_core.js │ ├── media │ ├── index.html │ └── media_core.js │ ├── navbar │ ├── backcompat_tests.html │ ├── index.html │ ├── navbar_backcompat.js │ └── navbar_core.js │ ├── page-sections │ ├── index.html │ └── page_core.js │ ├── page │ ├── dialog-tests.html │ ├── dialog_count.js │ ├── index.html │ └── page_core.js │ ├── pagecontainer │ ├── index.html │ └── pagecontainer_core.js │ ├── panel │ ├── index.html │ └── panel_core.js │ ├── path │ ├── index.html │ └── path_core.js │ ├── popup │ ├── index.html │ ├── popup.setFadeTransition.js │ └── popup_core.js │ ├── rangeslider │ ├── backcompat-tests.html │ ├── index.html │ ├── rangeslider_backcompat.js │ └── rangeslider_core.js │ ├── select │ ├── controlgroup-interaction-tests.html │ ├── controlgroup_interaction_core.js │ ├── index.html │ ├── new-backcompat-tests.html │ ├── new-tests.html │ ├── new_backcompat_core.js │ ├── new_core.js │ └── select_core.js │ ├── slider │ ├── backcompat-tests.html │ ├── index.html │ ├── settings.js │ ├── slider_backcompat.js │ ├── slider_core.js │ └── slider_events.js │ ├── support │ ├── index.html │ └── support_core.js │ ├── table │ ├── columntoggle-tests.html │ ├── columntoggle_core.js │ ├── index.html │ ├── reflow-tests.html │ ├── reflow_core.js │ ├── table.setup.js │ └── table_core.js │ ├── tabs │ ├── index.html │ └── tabs_core.js │ ├── textinput │ ├── external.html │ ├── index.html │ ├── settings.js │ └── textinput_core.js │ ├── toolbar │ ├── fixed-toolbar-tests.html │ ├── fixed_toolbar_core.js │ ├── index.html │ └── toolbar_core.js │ ├── transitions │ ├── index.html │ └── transitions_core.js │ ├── widget │ ├── backcompat-tests.html │ └── backcompat_core.js │ └── zoom │ ├── index.html │ ├── initial-disable.html │ ├── zoom-initial-disable.js │ └── zoom.js └── tools ├── config-props.html ├── index.html ├── log-page-events.html ├── log-page-events.js ├── page-change-time.html └── page-change-time.js /.csscomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove-empty-rulesets": true, 3 | "always-semicolon": true, 4 | "color-case": "lower", 5 | "block-indent": "\t", 6 | "color-shorthand": true, 7 | "element-case": "lower", 8 | "eof-newline": true, 9 | "leading-zero": false, 10 | "quotes": "double", 11 | "sort-order-fallback": "abc", 12 | "space-before-colon": "", 13 | "space-after-colon": " ", 14 | "space-before-combinator": " ", 15 | "space-after-combinator": " ", 16 | "space-between-declarations": "\n", 17 | "space-before-opening-brace": " ", 18 | "space-after-opening-brace": "\n", 19 | "space-after-selector-delimiter": "\n", 20 | "space-before-selector-delimiter": "", 21 | "space-before-closing-brace": "\n", 22 | "strip-spaces": true, 23 | "unitless-zero": true 24 | } 25 | -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-model": false, 4 | "box-sizing": false, 5 | "compatible-vendor-prefixes": false, 6 | "duplicate-background-images": false, 7 | "import": false, 8 | "important": false, 9 | "outline-none": false, 10 | "overqualified-elements": false, 11 | "text-indent": false, 12 | 13 | // These are not ideal but needed for current theme 14 | "qualified-headings": false, 15 | "regex-selectors": false, 16 | "unqualified-attributes": false, 17 | "universal-selector": false, 18 | "unique-headings": false, 19 | "vendor-prefix": false 20 | } 21 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # See http://editorconfig.org/ 3 | 4 | root = true 5 | 6 | [*] 7 | indent_style = tab 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | 13 | [external/**] 14 | trim_trailing_whitespace = false 15 | insert_final_newline = varies 16 | end_of_line = varies -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # JS files must always use LF for tools to work 5 | *.js eol=lf 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | *~ 3 | *.diff 4 | *.patch 5 | .DS_Store 6 | cache/ 7 | combined/ 8 | combine/ 9 | compiled/ 10 | dist/ 11 | tmp/ 12 | temp/ 13 | *.swp 14 | .gitignore 15 | 16 | # branch preview 17 | branches 18 | 19 | # node build dependencies 20 | node_modules 21 | 22 | # tests output 23 | _tests/ 24 | 25 | # phantom junit output 26 | build/test-results/ 27 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "jquery", 3 | 4 | // We want to output all errors 5 | "maxErrors": 1000000 6 | } 7 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "boss": true, 3 | "curly": true, 4 | "eqeqeq": true, 5 | "eqnull": true, 6 | "expr": true, 7 | "immed": true, 8 | "noarg": true, 9 | "quotmark": "double", 10 | "smarttabs": true, 11 | "trailing": true, 12 | "undef": true, 13 | "unused": true, 14 | 15 | "node": true 16 | } -------------------------------------------------------------------------------- /LICENSE-INFO.min.txt: -------------------------------------------------------------------------------- 1 | /*! jQuery Mobile v@VERSION | Copyright jQuery Foundation, Inc. | jquery.org/license */ 2 | -------------------------------------------------------------------------------- /LICENSE-INFO.txt: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Mobile v@VERSION 3 | * http://jquerymobile.com 4 | * 5 | * Copyright jQuery Foundation, Inc. and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | */ 10 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-mobile", 3 | "main": [ 4 | "js/jquery.mobile.js", 5 | "css/themes/default/jquery.mobile.css" 6 | ], 7 | "ignore": [ 8 | ".jshintrc", 9 | "**/*.txt", 10 | "!LICENSE-INFO.txt", 11 | "build", 12 | "demos", 13 | "tests", 14 | "tools" 15 | ], 16 | "dependencies": { 17 | "jquery": ">=1.8.0", 18 | "jquery-ui": "jquery/jquery-ui#1.12.1" 19 | }, 20 | "devDependencies": { 21 | "requirejs": "2.1.2", 22 | "requirejs-plugins": "1.0.3", 23 | "requirejs-text": "2.0.3", 24 | "qunit": "1.18.0", 25 | "qunit-assert-classes": "1.0.2", 26 | "jquery-1.11.3": "jquery#1.11.3", 27 | "jquery-mobile-datepicker-wrapper": "arschmitz/jquery-mobile-datepicker-wrapper#0.1.9", 28 | "jshint": "2.4.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /build/tasks/options/clean.js: -------------------------------------------------------------------------------- 1 | var path = require( "path" ); 2 | 3 | module.exports = { 4 | dist: [ "<%= dist %>" ], 5 | git: [ path.join( "<%= dist %>", "git" ) ], 6 | tmp: [ "<%= dirs.tmp %>" ], 7 | testsOutput: [ "_tests" ], 8 | "googleCDN": [ "<%= dirs.cdn.google %>" ], 9 | "jqueryCDN": [ "<%= dirs.cdn.jquery %>" ] 10 | }; 11 | -------------------------------------------------------------------------------- /build/tasks/options/compress.js: -------------------------------------------------------------------------------- 1 | module.exports = function( grunt ) { 2 | var files = require( "../../files.js" )( grunt ); 3 | 4 | return { 5 | dist: { 6 | options: { 7 | archive: files.distZipOut 8 | }, 9 | files: [ 10 | { 11 | expand: true, 12 | cwd: "<%= dist %>", 13 | src: files.distZipContent 14 | } 15 | ] 16 | }, 17 | images: { 18 | options: { 19 | archive: files.imagesZipOut 20 | }, 21 | files: [ 22 | { 23 | expand: true, 24 | cwd: "<%= dist %>", 25 | src: [ "images/**" ] 26 | } 27 | ] 28 | }, 29 | "googleCDN": { 30 | options: { 31 | archive: files.googleCDNZipOut 32 | }, 33 | files: [ 34 | { 35 | expand: true, 36 | cwd: "<%= dirs.tmp %>", 37 | src: [ "**/*" ] 38 | } 39 | ] 40 | } 41 | }; 42 | }; 43 | -------------------------------------------------------------------------------- /build/tasks/options/concat.js: -------------------------------------------------------------------------------- 1 | var path = require( "path" ); 2 | 3 | module.exports = { 4 | js: { 5 | options: { 6 | banner: "<%= banner %>" 7 | }, 8 | 9 | src: [ path.join( "<%= dist %>", "<%= name %>" ) + "<%= versionSuffix %>.js" ], 10 | dest: path.join( "<%= dist %>", "<%= name %>" ) + "<%= versionSuffix %>.js" 11 | }, 12 | demos: { 13 | src: [ "demos/_assets/js/*.js" ], 14 | dest: path.join( "<%= dist %>", "demos/_assets/js/index.js" ) 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /build/tasks/options/coveralls.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | force: true 4 | }, 5 | all: { 6 | 7 | // LCOV coverage file relevant to every target 8 | src: "_tests/reports/lcov/lcov.info" 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /build/tasks/options/csscomb.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | structure: { 3 | options: { 4 | config: ".csscomb.json" 5 | }, 6 | files: [ { 7 | expand: true, 8 | src: [ "css/structure/*.css" ] 9 | } ] 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /build/tasks/options/csslint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | csslintrc: ".csslintrc" 4 | }, 5 | src: [ "css/**/*.css" ] 6 | }; 7 | -------------------------------------------------------------------------------- /build/tasks/options/cssmin.js: -------------------------------------------------------------------------------- 1 | module.exports = function( grunt ) { 2 | var files = require( "../../files.js" )( grunt ); 3 | 4 | return { 5 | options: { 6 | banner: "<%= bannerMin =>", 7 | keepSpecialComments: 0 8 | }, 9 | minify: { 10 | files: files.getMinifiedCSSFiles( "<%= dist %>" ) 11 | } 12 | }; 13 | }; 14 | -------------------------------------------------------------------------------- /build/tasks/options/esformatter.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | preset: "jquery", 4 | plugins: [ "esformatter-jquery-chain" ] 5 | }, 6 | files: { 7 | src: [ 8 | "js/**/*.js", 9 | "tests/**/*.js", 10 | "build/**/*.js", 11 | "*.js" 12 | ] 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /build/tasks/options/hash-manifest.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | googleCDN: { 3 | options: { 4 | algo: "md5", 5 | cwd: "<%= dirs.tmp %>" 6 | }, 7 | src: [ "**/*" ], 8 | dest: "MANIFEST" 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /build/tasks/options/htmllint.js: -------------------------------------------------------------------------------- 1 | var htmllintBad = [ 2 | "!tests/integration/popup/weird-characters-in-id-tests.html", 3 | "!tests/integration/navigation/blank.html", 4 | "!tests/integration/listview/index.html", 5 | "!demos/map-list-toggle/showMore.html" 6 | ]; 7 | 8 | module.exports = { 9 | options: { 10 | ignore: [ 11 | /The text content of element “script” was not in the required format: Expected space, tab, newline, or slash but found “.” instead/, 12 | /Empty heading/, 13 | /The “color” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill/ 14 | ] 15 | }, 16 | all: { 17 | src: [ "demos/**/*.html", "tests/**/*.html" ].concat( htmllintBad ) 18 | }, 19 | demos: { 20 | src: [ "demos/**/*.html" ].concat( htmllintBad ) 21 | }, 22 | tests: { 23 | src: [ "tests/**/*.html" ].concat( htmllintBad ) 24 | } 25 | }; 26 | -------------------------------------------------------------------------------- /build/tasks/options/jshint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | js: { 3 | options: { 4 | jshintrc: "js/.jshintrc" 5 | }, 6 | files: { 7 | src: [ 8 | "js/**/*.js", 9 | "demos/_assets/js/**/*.js", 10 | "tests/**/*.js", 11 | "!js/jquery.js", 12 | "!js/jquery.ui.widget.js", 13 | "!js/widgets/jquery.ui.tabs.js", 14 | "!js/jquery.ui.core.js", 15 | "!tests/lib/**/*.js", 16 | "!demos/_assets/js/view-source.js", 17 | "!demos/_assets/js/syntaxhighlighter.js" 18 | ] 19 | } 20 | }, 21 | grunt: { 22 | options: { 23 | jshintrc: ".jshintrc" 24 | }, 25 | files: { 26 | src: [ "Gruntfile.js" ] 27 | } 28 | } 29 | }; 30 | -------------------------------------------------------------------------------- /build/tasks/options/php.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | server: { 3 | options: { 4 | port: "<%= phpPort %>", 5 | baseUrl: ".", 6 | silent: true 7 | } 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /build/tasks/options/qunit_junit.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | dest: "build/test-results", 4 | namer: function( url ) { 5 | var match = url.match( /tests\/([^\/]*)\/(.*)$/ ); 6 | return match[ 2 ].replace( /\//g, "." ).replace( /\.html/, "" ).replace( /\?/, "-" ); 7 | } 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /build/tasks/options/spider.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "src": { 3 | options: { 4 | url: "http://localhost:" + "<%= phpPort %>", 5 | ignore: 6 | "api\\.jquerymobile\\.com/accordion|notapage|intel|" + 7 | "api\\.jquerymobile\\.com/[0-9]\\.[0-9]|packt|twitter\\.com/jquery|" + 8 | "demos/backbone\-requirejs/backbone\-require\.html" 9 | } 10 | }, 11 | "dist": { 12 | options: { 13 | url: "http://localhost:" + "<%= phpPort %>" + "/dist/", 14 | ignore: 15 | "api\\.jquerymobile\\.com/accordion|notapage|intel|" + 16 | "api\\.jquerymobile\\.com/[0-9]\\.[0-9]|packt|twitter\\.com/jquery|" + 17 | "demos/backbone\-requirejs/backbone\-require\.html" 18 | } 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /build/tasks/options/uglify.js: -------------------------------------------------------------------------------- 1 | var path = require( "path" ); 2 | 3 | module.exports = { 4 | all: { 5 | options: { 6 | banner: "<%= bannerMin %>", 7 | sourceMap: path.join( "<%= dist %>", "<%= name %>" ) + "<%= versionSuffix %>.min.map", 8 | sourceMappingURL: "<%= name %>" + "<%= versionSuffix %>.min.map", 9 | beautify: { 10 | "ascii_only": true 11 | } 12 | }, 13 | files: { 14 | "dist/jquery.mobile<%= versionSuffix %>.min.js": 15 | path.join( "<%= dist %>", "<%= name %>" ) + "<%= versionSuffix %>.js" 16 | } 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /build/wrap.end: -------------------------------------------------------------------------------- 1 | 2 | })); 3 | -------------------------------------------------------------------------------- /build/wrap.start: -------------------------------------------------------------------------------- 1 | (function ( root, doc, factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | // AMD. Register as an anonymous module. 4 | define( [ "jquery" ], function ( $ ) { 5 | factory( $, root, doc ); 6 | return $.mobile; 7 | }); 8 | } else { 9 | // Browser globals 10 | factory( root.jQuery, root, doc ); 11 | } 12 | }( this, document, function ( jQuery, window, document, undefined ) { -------------------------------------------------------------------------------- /combine.php: -------------------------------------------------------------------------------- 1 | .ui-header, 13 | .ui-page-dialog-contain > .ui-content, 14 | .ui-page-dialog-contain > .ui-footer { 15 | display: block; 16 | position: relative; 17 | width: auto; 18 | margin: 0; 19 | } 20 | .ui-page-dialog-contain > .ui-header { 21 | overflow: hidden; 22 | z-index: 10; 23 | padding: 0; 24 | border-top-width: 0; 25 | } 26 | .ui-page-dialog-contain > .ui-footer { 27 | z-index: 10; 28 | padding: 0 1em; 29 | border-bottom-width: 0; 30 | } 31 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.filterable.css: -------------------------------------------------------------------------------- 1 | html .ui-filterable + .ui-listview, 2 | html .ui-filterable.ui-listview { 3 | margin-top: .5em; 4 | } 5 | .ui-collapsible-content > form.ui-filterable { 6 | margin-top: -.5em; 7 | } 8 | .ui-collapsible-content > .ui-textinput-search.ui-filterable { 9 | margin-top: 0; 10 | } 11 | .ui-collapsible-content > .ui-filterable + .ui-listview:not(.ui-listview-inset) > li.ui-first-child, 12 | .ui-collapsible-content > .ui-filterable + .ui-listview:not(.ui-listview-inset) > li.ui-first-child > a.ui-button, 13 | .ui-collapsible-content > .ui-filterable.ui-listview:not(.ui-listview-inset) > li.ui-first-child, 14 | .ui-collapsible-content > .ui-filterable.ui-listview:not(.ui-listview-inset) > li.ui-first-child > a.ui-button { 15 | border-top-width: 1px; 16 | } 17 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.forms.checkboxradio.css: -------------------------------------------------------------------------------- 1 | .ui-checkboxradio-label { 2 | margin: .5em 0; 3 | position: relative; 4 | text-align: left; 5 | white-space: normal; /* Nowrap + ellipsis doesn't work on label. Issue #1419. */ 6 | } 7 | 8 | .ui-checkboxradio-label.ui-icon-top, 9 | .ui-checkboxradio-label.ui-icon-bottom { 10 | text-align: center; 11 | } 12 | 13 | .ui-checkboxradio-label .ui-icon.ui-checkboxradio-icon { 14 | width: 18px; 15 | height: 18px; 16 | margin: 0 2px; 17 | } 18 | 19 | .ui-checkboxradio-radio-label.ui-state-active .ui-checkboxradio-icon { 20 | width: 8px; 21 | height: 8px; 22 | border-width: 5px; 23 | border-style: solid; 24 | } 25 | 26 | .ui-controlgroup-horizontal .ui-checkboxradio-icon { 27 | display: none; 28 | } 29 | 30 | .ui-checkboxradio-disabled { 31 | pointer-events: none; 32 | } 33 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.forms.slider.tooltip.css: -------------------------------------------------------------------------------- 1 | /* slider tooltip 2 | -----------------------------------------------------------------------------------------------------------*/ 3 | 4 | .ui-slider-popup { 5 | width: 64px; 6 | height: 64px; 7 | font-size: 36px; 8 | padding-top: 14px; 9 | opacity: .8; 10 | } 11 | 12 | .ui-slider-popup { 13 | position: absolute !important; 14 | text-align: center; 15 | z-index: 100; 16 | } 17 | 18 | .ui-slider-track .ui-button.ui-slider-handle { 19 | font-size: .9em; 20 | line-height: 30px; 21 | } 22 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.forms.textinput.autogrow.css: -------------------------------------------------------------------------------- 1 | textarea.ui-textinput-text.ui-textinput-autogrow { 2 | overflow: hidden; 3 | } 4 | 5 | .ui-textinput-autogrow-resize { 6 | -webkit-transition: height .25s; 7 | -o-transition: height .25s; 8 | -moz-transition: height .25s; 9 | transition: height .25s; 10 | } 11 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.table.columntoggle.popup.css: -------------------------------------------------------------------------------- 1 | /* 2 | Styles for the table columntoggle mode with a popup 3 | */ 4 | 5 | .ui-table-columntoggle-btn { 6 | float: right; 7 | margin-bottom: .8em; 8 | } 9 | /* Remove top/bottom margins around the fieldcontain on check list */ 10 | .ui-table-columntoggle-popup fieldset { 11 | margin:0; 12 | } 13 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.table.css: -------------------------------------------------------------------------------- 1 | .ui-table { 2 | border: 0; 3 | border-collapse: collapse; 4 | padding: 0; 5 | width: 100%; 6 | } 7 | .ui-table th, 8 | .ui-table td { 9 | line-height: 1.5em; 10 | text-align: left; 11 | padding: .4em .5em; 12 | vertical-align:top; 13 | } 14 | .ui-table th .ui-button, 15 | .ui-table td .ui-button { 16 | line-height: normal; 17 | } 18 | .ui-table th { 19 | font-weight: bold; 20 | } 21 | .ui-table caption { 22 | text-align: left; 23 | margin-bottom: 1.4em; 24 | opacity: .5; 25 | } 26 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.tabs.css: -------------------------------------------------------------------------------- 1 | .ui-tabs { 2 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 3 | padding: .2em; 4 | } 5 | -------------------------------------------------------------------------------- /css/structure/jquery.mobile.transition.visuals.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.mobile.transition.fade.css"); 2 | @import url("jquery.mobile.transition.pop.css"); 3 | @import url("jquery.mobile.transition.slide.css"); 4 | @import url("jquery.mobile.transition.slidefade.css"); 5 | @import url("jquery.mobile.transition.slidedown.css"); 6 | @import url("jquery.mobile.transition.slideup.css"); 7 | @import url("jquery.mobile.transition.flip.css"); 8 | @import url("jquery.mobile.transition.turn.css"); 9 | @import url("jquery.mobile.transition.flow.css"); 10 | -------------------------------------------------------------------------------- /css/themes/default/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/ajax-loader.gif -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/action-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/action-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/action-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/action-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/alert-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/alert-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/alert-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/alert-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-d-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-d-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-d-l-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-d-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-d-l-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-d-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-d-r-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-d-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-d-r-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-d-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-l-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-l-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-r-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-r-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-u-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-u-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-u-l-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-u-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-u-l-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-u-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-u-r-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-u-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-u-r-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/arrow-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/arrow-u-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/audio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/audio-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/audio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/audio-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/back-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/back-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/bars-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/bars-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/bars-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/bars-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/bullets-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/bullets-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/bullets-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/bullets-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/calendar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/calendar-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/calendar-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/camera-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/camera-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/camera-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/camera-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-d-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-d-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-l-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-l-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-r-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-r-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-u-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/caret-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/caret-u-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/check-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/check-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/check-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/clock-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/clock-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/cloud-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/cloud-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/cloud-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/comment-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/comment-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/comment-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/delete-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/delete-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/delete-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/edit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/edit-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/edit-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/forbidden-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/forbidden-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/forbidden-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/forbidden-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/forward-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/forward-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/forward-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/forward-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/gear-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/gear-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/gear-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/grid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/grid-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/grid-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/heart-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/heart-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/heart-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/heart-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/home-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/home-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/info-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/info-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/info-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/info-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/location-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/location-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/location-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/lock-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/lock-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/mail-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/mail-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/mail-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/mail-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/minus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/minus-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/minus-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/navigation-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/navigation-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/navigation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/navigation-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/phone-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/phone-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/phone-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/plus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/plus-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/plus-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/power-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/power-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/power-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/power-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/recycle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/recycle-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/recycle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/recycle-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/refresh-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/refresh-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/refresh-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/search-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/search-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/shop-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/shop-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/shop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/shop-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/star-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/star-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/star-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/user-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/user-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/user-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/video-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/video-black.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-png/video-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery-archive/jquery-mobile/1c3a17624608a1650124020bea7d0dadf365475f/css/themes/default/images/icons-png/video-white.png -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/action-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/action-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/alert-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/alert-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-d-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-d-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-d-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-d-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-l-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-r-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-u-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-u-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-u-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/arrow-u-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/back-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/back-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/bars-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/bars-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-d-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-d-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-l-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-r-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-u-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/caret-u-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/check-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/check-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/cloud-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/cloud-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/edit-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/edit-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/eye-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/eye-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/forward-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/forward-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/heart-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/heart-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/home-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/location-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/location-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/lock-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/lock-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/mail-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/mail-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/minus-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/minus-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/navigation-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/navigation-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/plus-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/recycle-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/recycle-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/search-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/search-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/shop-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/shop-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/star-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/star-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/video-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /css/themes/default/images/icons-svg/video-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /css/themes/default/index.php: -------------------------------------------------------------------------------- 1 | 2 |
6 | 7 | -------------------------------------------------------------------------------- /demos/jqm-search.php: -------------------------------------------------------------------------------- 1 |Content
24 | 25 | 26 |This is a popup from another dialog
15 |This is a popup in yet another dialog
15 |Content
13 |Content
13 |Content
13 |Content
13 |This is the other page.
Back twice test popup
11 |