jQuery Mobile Framework
Find a file
Kin Blas 02c9264f0d Fix for issue 613 - Jquery Mobile ignores original 'base' tag defined in HTML
- Fixed baseTagTest() in jquery.mobile.support.js, so that it uses any pre-existing base tag for testing. This fixes the bug on Webkit (Safari) where the relative paths for links were being resolved/expressed with the document path instead of the original base path.

- Modified the base code in jquery.mobile.navigation.js so that it uses the initial path of a pre-existing base tag, instead of always using the document path. This means that a document with a URL such as:

    http://foo.com/a/b/c#docs/pages/index.html

That uses a base tag like:

    <base href="http://foo.com/bar/">

Will resolve properly:

    http://foo.com/bar/docs/pages/index.html

so the mobile page gets loaded properly.

- Reduced the path.get() function down to a couple of regexp replace() calls.
2011-01-18 09:18:22 -08:00
build Add the ability to compress the CSS files. Now include both the Google Closure Compiler and the YUI Compressor (for CSS). 2010-10-14 18:02:56 -04:00
design All new icons and AI file for safe keeping. Goodnight icons. 2010-10-15 21:15:48 -04:00
docs fix extra-wide pages in opera & opera mini 2011-01-12 18:00:53 -05:00
experiments Merge branch 'master' of https://github.com/walkingeyerobot/jquery-mobile into pull672 2011-01-11 09:04:32 -08:00
external Ported Jasmine integration tests over to Qunit tests. Kept these in a different folder of integration tests has there purpose is to test at a page level rather then a method by method level. 2010-12-31 13:37:17 -05:00
js Fix for issue 613 - Jquery Mobile ignores original 'base' tag defined in HTML 2011-01-18 09:18:22 -08:00
speed Sweep through all files to add a trailing slash to <link> tags that include thems/default. This should fix Opera Mobile Issue 763. 2011-01-05 16:19:24 -08:00
tests tests for large select dialog issue 2011-01-15 23:15:17 -08:00
themes removed hidden overflow rule, which makes page transitions a little cleaner on the desktop, but more importantly, Fixes #446, Fixes #678 2011-01-13 18:08:59 -05:00
.gitignore Also .gitignore combine folder created by Ant build 2010-12-16 10:47:18 +01:00
.htaccess updated kill cache settings 2010-11-09 18:06:44 -05:00
build.xml Fixed reference to jquery.ui.position.js in Ant build, now (more) consistent with Makefile 2010-12-15 16:18:39 +01:00
combine.php Fixed 413 - Dev issue: our .htaccess file on the server is doing a 301 redirect which is causing css and image loading issues. 2010-11-09 13:58:28 -08:00
index.html Quick fix for issue 763 - Icons and loading image fail to display on Opera Mobile. 2011-01-05 15:29:17 -08:00
Makefile Sweep through all files to add a trailing slash to <link> tags that include thems/default. This should fix Opera Mobile Issue 763. 2011-01-05 16:19:24 -08:00
README.md renamed jquery.mobile.js jquery.mobile.core.js. updated build files, etc to match 2010-11-18 22:50:33 -05:00
version.txt updated version 2010-11-12 08:27:33 -05:00

Early stage development for the jQuery Mobile UI Framework. Code is subject to change dramatically!

Usage

Early documentation: https://github.com/jquery/jquery-mobile/wiki/_pages

For now, I've set things up with a little combinator script to concat all the css and js files into one request and gzip. (js/ and themes/default) You'll need to point your local apache & php webserver at this root directory in order to preview things.

If you don't currently have a webserver running locally, a quick way to get up and running is to download and install Mamp for Mac OSX. Once installed, just open Mamp, click preferences, go to the Apache tab, and select your local jQuery Mobile folder as the root. Then you can open a browser to http://localhost:8888 to preview the code. An alternative is XAMPP, which is also available for Windows, though you need to actually modify Apache's httpd.conf to point to your checkout: http://www.apachefriends.org/en/xampp.html You need the Rewrite (mod_rewrite.so), Expire (mod_expires.so) and Header (mod_headers.so) modules loaded.

Whenever this configuration becomes inconvenient, we can remove it, obviously it's not meant to stay!

  • when adding a js or css file, add it to the manifest in its directory and it'll be included in the request
  • As far as JS files go, jQuery.mobile.core.js is the starting point.