improved request queue handling

This commit is contained in:
Jon Atkins
2013-08-28 19:34:21 +01:00
parent 784b26561b
commit 96d3e1ded7
3 changed files with 71 additions and 32 deletions

View File

@@ -32,7 +32,7 @@ window.renderUpdateStatus = function() {
t += '<span>'+status.short+'</span>';
if (status.progress !== undefined)
t += ' '+Math.round(status.progress*100)+'%';
t += ' '+Math.floor(status.progress*100)+'%';
} else {
// no mapDataRequest object - no status known
t += '...unknown...';