Add a countdown to license error messages.

Former-commit-id: bba7ccf777c05801731a790351dc9920b1546262
This commit is contained in:
Ramon Novoa 2019-03-26 15:32:57 +01:00
parent aa0ab53cf3
commit fa7cdc020b
1 changed files with 14 additions and 5 deletions

View File

@ -163,12 +163,21 @@ $(document).ready (function () {
background: "black"
},
open: function() {
setTimeout(function(){
$("#spinner_ok").hide();
var remaining = 30;
// Timeout counter.
var count = function() {
if (remaining > 0) {
$("#license_error_remaining").text(remaining);
remaining -= 1;
} else {
$("#license_error_remaining").hide();
$("#ok_buttom").show();
},
30000
);
clearInterval(count);
}
}
setInterval(count, 1000);
}
});