├── .project ├── README.md ├── dist ├── tiquery.js └── tiquery.min.js ├── src ├── core.js ├── events.js ├── http.js ├── intro.js ├── memory.js ├── outro.js └── titanium.js ├── test ├── .fastdev.lock ├── .gitignore ├── .project ├── .settings │ └── com.appcelerator.titanium.mobile.prefs ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README ├── Resources │ ├── KS_nav_ui.png │ ├── KS_nav_views.png │ ├── android │ │ ├── appicon.png │ │ ├── default.png │ │ └── images │ │ │ ├── res-long-land-hdpi │ │ │ └── default.png │ │ │ ├── res-long-land-ldpi │ │ │ └── default.png │ │ │ ├── res-long-port-hdpi │ │ │ └── default.png │ │ │ ├── res-long-port-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-mdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-ldpi │ │ │ └── default.png │ │ │ └── res-notlong-port-mdpi │ │ │ └── default.png │ ├── app.js │ ├── iphone │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── appicon.png │ ├── memory.js │ ├── qunit-titanium │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── qunit │ │ │ ├── qunit.js │ │ │ ├── titanium_adaptor.js │ │ │ └── titanium_adaptor_quiet.js │ │ ├── runner.js │ │ └── test │ │ │ ├── events.js │ │ │ ├── http.js │ │ │ └── shortcuts.js │ ├── tests.js │ └── tiquery.js ├── manifest └── tiapp.xml └── version.txt /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/README.md -------------------------------------------------------------------------------- /dist/tiquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/dist/tiquery.js -------------------------------------------------------------------------------- /dist/tiquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/dist/tiquery.min.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/src/core.js -------------------------------------------------------------------------------- /src/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/src/events.js -------------------------------------------------------------------------------- /src/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/src/http.js -------------------------------------------------------------------------------- /src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/src/intro.js -------------------------------------------------------------------------------- /src/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/src/memory.js -------------------------------------------------------------------------------- /src/outro.js: -------------------------------------------------------------------------------- 1 | })(this, Titanium); -------------------------------------------------------------------------------- /src/titanium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/src/titanium.js -------------------------------------------------------------------------------- /test/.fastdev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/.fastdev.lock -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | build 3 | -------------------------------------------------------------------------------- /test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/.project -------------------------------------------------------------------------------- /test/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Fri Sep 30 13:59:24 MDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.2 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /test/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/CHANGELOG.txt -------------------------------------------------------------------------------- /test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/LICENSE -------------------------------------------------------------------------------- /test/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/LICENSE.txt -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/README -------------------------------------------------------------------------------- /test/Resources/KS_nav_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/KS_nav_ui.png -------------------------------------------------------------------------------- /test/Resources/KS_nav_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/KS_nav_views.png -------------------------------------------------------------------------------- /test/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/appicon.png -------------------------------------------------------------------------------- /test/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /test/Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /test/Resources/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/app.js -------------------------------------------------------------------------------- /test/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /test/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /test/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/iphone/Default.png -------------------------------------------------------------------------------- /test/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /test/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /test/Resources/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/memory.js -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .swp 3 | -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/README.md -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/package.json -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/qunit/qunit.js -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/qunit/titanium_adaptor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/qunit/titanium_adaptor_quiet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/qunit/titanium_adaptor_quiet.js -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/runner.js -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/test/events.js -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/test/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/test/http.js -------------------------------------------------------------------------------- /test/Resources/qunit-titanium/test/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/qunit-titanium/test/shortcuts.js -------------------------------------------------------------------------------- /test/Resources/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/tests.js -------------------------------------------------------------------------------- /test/Resources/tiquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/Resources/tiquery.js -------------------------------------------------------------------------------- /test/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/manifest -------------------------------------------------------------------------------- /test/tiapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wGEric/TiQuery/HEAD/test/tiapp.xml -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.1 --------------------------------------------------------------------------------