toddparker
433f9af612
Updated markup to match the new API styles
2011-07-28 16:41:02 -04:00
scottjehl
30c94575c2
updated docs to include autoInitializePage option. Fixes #1391
2011-07-24 22:21:16 -04:00
scottjehl
3dd495588b
removed the nonHistorySelectors option, which was no longer in use after the nav refactor.
2011-07-15 11:50:26 -04:00
Kin Blas
2b51355656
Switch back to processing link clicks on the "click" event. It really is the only reliable way across all the devices we support.
...
Also, remove all references to useFastClick.
2011-06-29 17:38:00 -07:00
scottjehl
13a22e3eec
updated the footers in the new docs templates
2011-06-20 18:53:55 -04:00
scottjehl
f3e35d49dd
more updates to the docs markup. getting close!
2011-06-20 18:53:55 -04:00
scottjehl
85c1121680
update js references
2011-06-20 18:53:54 -04:00
scottjehl
735ee926d3
more docs updates. moved to the green header, set default transition dynamically
2011-06-20 18:53:53 -04:00
scottjehl
1e5441fd76
reworked the docs to better accommodate wide screens using a simple responsive layout. Tweaks forthcoming!
2011-06-20 18:53:53 -04:00
scottjehl
45a71ac499
Added global config option "useFastClick", so that the changes we made for automated ajax handling since A4 can be disabled if needed, for whatever reason. When handling clicks and taps automatically with Ajax, this option will use jQuery Mobile's <code>vclick</code> event, enabling page changes to happen slightly sooner on devices that support touch events, and keeping the address bar hidden during page transtions. When disabled, the automatied Ajax handling will use an ordinary <code>click</code> event instead. This option has no effect on non-touch devices, but when enabled, it may interfere with jQuery plugins that bind to click events rather than vclick events. Fixes #1857
2011-06-20 11:35:09 -04:00
scottjehl
fcbfc2f380
added minScrollBack feature to core options. This is the minimum scroll distance that will be jumped-to when returning to a page. By default, the distance is screen.height /2. If you really needed to disable scroll memory altogether, this could be set to Infinity. Note that disabling scroll memory altogether is almost never a good idea for usability, but the option is there.
2011-06-17 19:19:47 -04:00
scottjehl
8929ac33b9
Removed the ajaxLinksEnabled and ajaxFormsEnabled settings. These were deprecated in a4 and scheduled for removal. Automated link and form ajax handling can still be globally disabled via the ajaxEnabled option.
2011-05-24 16:08:30 -04:00
Kin Blas
3c792c58f0
Merge branch 'master' into navigation
...
Fixed Conflicts:
js/jquery.mobile.init.js
js/jquery.mobile.navigation.js
2011-05-20 09:39:19 -07:00
scottjehl
8ba4c27300
Ya'll can scale your pages now. Fixes #1645 . Note: we originally disabled user zooming to work around a bug in iOS that automatically zooms the page beyond the constraints of the viewport on orientation change. We are not working around this bug at all now, but you are free to include any meta tag you'd like, or better yet, consider this polyfill: http://www.blog.highub.com/mobile-2/a-fix-for-iphone-viewport-scale-bug/
2011-05-17 17:28:19 -04:00
Kin Blas
b96310eedf
- Externalize some of the nested functions in changePage().
...
- Modified changePage() so that it can take an options object. Updated all references throughout the framework.
- Split $.mobile.pageLoading() into 2 functions $.mobile.show/hidePageLoadingMsg(). Updated docs accordingly.
- Renamed $.mobile.defaultTransition to $.mobie.defaultPageTransition. Updated docs accordingly.
- Added $.mobile.defaultDialogTransition so that it isn't hard coded in the changePage/transitionPages and select code.
- Hand integrated jquery.mobile.navigation.js checkins from master: 4b4ee54a , e775f5e8 , e597ccb3 , 084bbbd8 .
2011-05-16 16:02:26 -07:00
scottjehl
d97a964884
been meaning to do this for a while.
2011-04-14 16:04:47 -04:00
scottjehl
bb7b09f2a1
documented theme css namespace caveat. Fixes #1341
2011-04-01 14:58:36 -04:00
scottjehl
cb34aa2169
typo
2011-04-01 12:28:28 -04:00
scottjehl
51c79481fc
documented hashListeningEnabled. Fixes #1091
2011-03-30 23:28:53 -04:00
scottjehl
4a45d8d96b
Added pageLoadErrorMessage option. Defaults to "Error Loading Page". Documentation included. Fixes #1258 and Fixes #363
2011-03-27 11:45:03 -04:00
scottjehl
9fc1f9828b
fixed docs for the default namespace (blank string)
2011-03-26 08:39:12 -04:00
John Bender
63e8f6bfcb
resolved merge conflicts and fixed 2 tests
2011-03-15 23:57:17 -07:00
scottjehl
0d9627d54e
Added viewport meta elements to the markup of every template and removed the metaViewportContent option from code and docs. IE does not support generated viewport tags.
2011-03-14 00:20:23 -04:00
scottjehl
19f5fd7cae
changed the default namespace to "" and updated the docs/demos as such
2011-03-09 22:36:14 -05:00
scottjehl
aa0228d5b8
updated doc
2011-03-09 21:03:40 -05:00
scottjehl
d183cc591f
applied data-jq- namespacing to all data attributes in docs
2011-03-09 20:53:02 -05:00
Ashley Streb
767c35c629
Updating docs to specify that the default transition for dialogs is 'pop'
2011-02-16 22:52:44 -08:00
John Bender
2a1935caf5
Revert "added autoInitialize documentation"
...
This reverts commit 7da26e1974 .
2011-02-07 08:11:57 -08:00
toddparker
0aeb20b180
home button fixes
2011-02-03 18:34:35 -05:00
toddparker
9806cdc221
Added a home link to all pages and changed the header bar theme swatch to b globally
2011-02-03 17:29:48 -05:00
John Bender
7da26e1974
added autoInitialize documentation
2011-02-02 23:03:07 -08:00
scottjehl
2e6a396278
added ajaxEnabled option. ajaxLinksEnabled and ajaxFormsEnabled are deprecated and will be removed by 1.0. Fixes #851
2011-01-23 19:03:35 -05:00
Kin Blas
161f5e6ae3
Removed jquery.js from js/index.php and updated all html doc/experiments/test files that incuded "js/" so that they also include jquery.js manually.
...
This makes our include model match the include model on the CDN, and allows devs to make use of mobileinit for debugging some of the samples since that must be set up after jquery.js, but before jquery-mobile.
2011-01-20 11:26:12 -08:00
Kin Blas
38f09ee66f
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
scottjehl
909a0d0f08
removed transitions property from the configuration and updated docs to match.
2010-11-18 22:18:20 -05:00
scottjehl
bffff87441
changed docs for live event => bind event
2010-11-12 15:46:00 -05:00
Todd Parker
e9d2c376fc
added demo css file to api folder pages
2010-11-11 16:15:13 -05:00
Todd Parker
06b383cbbf
Content cleanup
2010-11-11 14:38:13 -05:00
Todd Parker
db9e9c918e
Combined settings and global config pages
2010-11-11 14:25:41 -05:00
scottjehl
17facff55d
docs updates
2010-11-11 13:33:19 -05:00