Add a countdown to license error messages.
Former-commit-id: bba7ccf777c05801731a790351dc9920b1546262
This commit is contained in:
parent
aa0ab53cf3
commit
fa7cdc020b
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue