CB-11488 (browser) Guarding code against the case when deviceready fires earlier than the plugin init on cold-start

This commit is contained in:
Peter (Somogyvari) Metz 2016-07-01 23:01:14 +01:00 committed by Alexander Sorokin
parent a18cc8241a
commit b0e1157c8a

View File

@ -77,6 +77,14 @@ var SplashScreen = {
localSplash.appendChild(localSplashImage);
document.body.appendChild(localSplash);
// deviceready fires earlier than the plugin init on cold-start
if (SplashScreen.shouldHideImmediately) {
SplashScreen.shouldHideImmediately = false;
window.setTimeout(function () {
SplashScreen.hide();
}, 1000);
}
}
},
hide: function () {
@ -95,8 +103,8 @@ var SplashScreen = {
document.body.removeChild(innerLocalSplash);
innerLocalSplash = null;
}, 1000);
} else {
SplashScreen.shouldHideImmediately = true;
}
}
};