Are you using Jquery Mobile or something similar? I had the same issue as i had a login page which it would skip if you were already logged in.
Looks like there is an issue when fading from the splash screen and doing a hash change at the same time.
My code before
$('#LoginPage').live('pagebeforeshow', function(event) {
if(window.localStorage.getItem("UserID"))
{
$.mobile.changePage("#MainPage");
appRefresh();
}
});
My code after
$('#LoginPage').live('pagebeforeshow', function(event) {
if(window.localStorage.getItem("UserID"))
{
$.mobile.changePage("#MainPage", {changeHash: false});
appRefresh();
}
});
This is now working for me.
There is an issue log for this
https://issues.apache.org/jira/browse/CB-2602
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…