mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-26 10:40:44 +00:00
implemented the autoInitializePage global config option, so that auto-initialization may be disabled in favor of manually initializing the page later on. Still needs a unit test.
This commit is contained in:
parent
fdb77bfa52
commit
df3fbca3f4
2 changed files with 7 additions and 2 deletions
|
|
@ -47,6 +47,9 @@
|
|||
|
||||
// Error response message - appears when an Ajax page request fails
|
||||
pageLoadErrorMessage: "Error Loading Page",
|
||||
|
||||
//automatically initialize the DOM when it's ready
|
||||
autoInitializePage: true,
|
||||
|
||||
// Support conditions that must be met in order to proceed
|
||||
// default enhanced qualifications are media query support OR IE 7+
|
||||
|
|
|
|||
|
|
@ -124,8 +124,10 @@
|
|||
$.mobile.defaultHomeScroll = ( !$.support.scrollTop || $(window).scrollTop() === 1 ) ? 0 : 1;
|
||||
|
||||
//dom-ready inits
|
||||
$( $.mobile.initializePage );
|
||||
|
||||
if( $.mobile.autoInitializePage ){
|
||||
$( $.mobile.initializePage );
|
||||
}
|
||||
|
||||
//window load event
|
||||
//hide iOS browser chrome on load
|
||||
$window.load( $.mobile.silentScroll );
|
||||
|
|
|
|||
Loading…
Reference in a new issue