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:
scottjehl 2011-06-23 09:55:14 -04:00
parent fdb77bfa52
commit df3fbca3f4
2 changed files with 7 additions and 2 deletions

View file

@ -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+

View file

@ -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 );