ElEditors, Administrators
71,179
edits
No edit summary |
No edit summary |
||
Line 307: | Line 307: | ||
}); | }); | ||
}, 10); | }, 10); | ||
var time_loading = 0; | |||
var chkReadyState = setInterval(function() { | |||
if (document.readyState == "complete" || time_loading > 3000) { | |||
// clear the interval | |||
clearInterval(chkReadyState); | |||
$('#loading-screen').css({transition: '300ms', pointerEvents: 'none', opacity: 0}); | |||
} | |||
time_loading += 100; | |||
}, 100); | |||
}); | }); |