finish redirect if success returned 5x, via installer

This commit is contained in:
Julian Lam
2017-09-14 13:42:48 -04:00
parent e64c1d28e6
commit b8ce4023c3

View File

@@ -115,12 +115,14 @@ $('document').ready(function () {
$('#launch .fa-spin').removeClass('hide');
$.post('/launch', function () {
var checker = setInterval(function () {
var successCount = 0;
setInterval(function () {
$.get('/admin').done(function () {
clearInterval(checker);
setTimeout(function () {
if (successCount >= 5) {
window.location = 'admin';
}, 2000);
} else {
successCount += 1;
}
});
}, 750);
});