This commit is contained in:
Jon Atkins 2013-08-28 06:19:34 +01:00
parent 0be0e3ea25
commit 3f4fae5d99

View File

@ -25,7 +25,7 @@ window.renderUpdateStatus = function() {
// status.long - longer description, for tooltip (optional) // status.long - longer description, for tooltip (optional)
// status.progress - fractional progress (from 0 to 1) of current state (optional) // status.progress - fractional progress (from 0 to 1) of current state (optional)
t += '<span class="help" title="'+status.long+'">'+status.short+'</span>'; t += '<span class="help" title="'+status.long+'">'+status.short+'</span>';
if (Status.progress !== undefined) if (status.progress !== undefined)
t += ' '+Math.round(status.progress*100)+'%'; t += ' '+Math.round(status.progress*100)+'%';
/* /*