Increase wait before refreshing the screen

This commit is contained in:
Naoki Takezoe
2017-12-08 02:02:09 +09:00
parent aabae2ef7f
commit b41aad92f2

View File

@@ -31,7 +31,9 @@
$('#error').show();
$('#progress').hide();
} else {
location.href = '@context.path/@owner/@repository';
setTimeout(function(){
location.href = '@context.path/@owner/@repository';
}, 2000);
}
}
});