Bug 326462 Time Elapsed column shows NaN:NaN r=biesi sr=jag

This commit is contained in:
neil%parkwaycc.co.uk 2006-07-18 09:50:43 +00:00
Родитель ee1dd6db83
Коммит e6202b6efb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -97,7 +97,7 @@ nsDownloadProgressListener.prototype = {
if (this.doc.getElementById("TimeElapsed").getAttribute("hidden") != "true") {
elapsedCol = elt.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling;
// Update elapsed time display.
elapsedCol.setAttribute("label", formatSeconds( this.elapsed / 1000, this.doc ));
elapsedCol.setAttribute("label", formatSeconds( now / 1000 - aDownload.startTime / 1000000, this.doc ));
}
// Calculate percentage.
var percent;