update index.html for requests that do not expire

This commit is contained in:
ThomasV 2016-02-19 14:08:28 +01:00
parent c2db006c86
commit c10a1672da
1 changed files with 8 additions and 6 deletions

View File

@ -39,6 +39,7 @@ if (id) {
var max = 100;
var initial = data.time;
var duration = data.exp;
if(duration){
var current = 100 * (Math.floor(Date.now()/1000) - initial)/duration;
$("#progressbar").progressbar({
value: current,
@ -54,6 +55,7 @@ if (id) {
}
};
var interval = setInterval(update, 1000);
}
});
})
.fail(function() {