Robert Gregor
a41c2ce8d1
fixed typos and added @deprecated note to the $.mobile.addResolutionBreakpoints method
2011-09-24 17:31:35 -03:00
gseguin
dbab6c06f7
Fix for issue #2455
...
Updated doc
2011-09-16 09:18:00 -07:00
gseguin
a0ca22ae3d
Changed behavior of .jqmData() only when called with no argument. It now returns undefined as per discussion on #jquerymobile-dev
2011-09-16 09:12:25 -07:00
scottjehl
f020f0661b
documented the loadPage method's loadMsgDelay option.
2011-07-31 10:08:38 -04:00
toddparker
433f9af612
Updated markup to match the new API styles
2011-07-28 16:41:02 -04: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
74b001f62e
linked up js docs references properly
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
c7a852938c
layout tweaks on the docs.
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
Kin Blas
9f4ae3ba79
Documenting isSameDomain(), isRelativeUrl(), isAbsoluteUrl(), makePathAbsolute(), and makeUrlAbsolute().
2011-06-17 18:22:00 -07:00
Kin Blas
93d3551f9c
Documenting $.mobile.path.parseUrl().
2011-06-17 12:29:50 -07:00
Kin Blas
0ec7c3c54a
Changed the description of the role option for loadPage() and changePage() to reflect some changes to the default value I just checked in.
2011-06-16 15:18:42 -07:00
Kin Blas
ca4428c430
- Update changePage() documentation to match current implementation.
...
- Added entry for loadPage().
2011-06-15 13:58:08 -07: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
77b25a46ea
docs typo. Fixes #1150
2011-03-30 23:52:36 -04:00
scottjehl
e8cee23744
major simplification of jqmData method, while adding new methods for jqmRemoveData, and also their $-namepaced utility methods, including $.jqmHasData. Commit includes 20 new unit tests included to test compatibility with jQuery core's data methods, and docs are updated as well.
2011-03-26 14:14:02 -04:00
scottjehl
8a3b846e95
documented the new jqmData method and :jqmData selector.
2011-03-26 09:11:42 -04: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
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
scottjehl
9b57c46349
Refactored urlStack and updated dialog and page plugins to match. jQuery Mobile's internal history now attempts to follow the history menu when urls change from hashchange, even for changes that go multiple steps forward or back. The internal history stack is now pruned based on whether a user goes back and then changes direction, whereas before a back-button click would result in a pop off the history. Instead we now maintain an active index number in the history stack, which allows us to maintain references to transitions that are saved on pages reached through clicking the forward button as well. This fixes #636 .
...
In the process, some other small changes should be noted:
urlStack is now urlHistory, a hash of methods and properties used for history stack management (stack, activeIndex, getActive, getPrev, getNext, addNew, clearForward, and listening Enabled). All these are documented inline and exposed on $.mobile.urlHistory (I'm not sure these will be publicly documented, but just exposed internally for plugins for now).
$.changePage has two argument changes: the "back" argument is now called "reverse"; this results in no change from an end-user standpoint, but reflects the fact that it only reverses the direction of a transition without affecting the internal history stack, and second, a new argument at the end defines whether changePage was called from a hashChange which makes that url open to history menu guessing.
2011-01-23 17:33:36 -05:00
scottjehl
9e4b0a484c
Overhauled path object and exposed it and the base object via $.mobile. Form and Link handlers now use the path methods internally. Unit tests adjusted, but more are needed to fully cover the path and base propeties and methods. Fixes #566 .
2011-01-22 17:42:07 -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
f56fe84245
fixed a docs typo
2010-11-18 22:56:40 -05:00
scottjehl
014bbbcc4a
typo
2010-11-11 17:17:45 -05:00
scottjehl
5a2b76bae4
close the ul
2010-11-11 16:13:30 -05:00
scottjehl
499bcb6458
added methods documentation
2010-11-11 16:12:14 -05:00