fix a missed variable rename in 33dca516

This commit is contained in:
Dan Winship 2010-03-22 12:12:04 -04:00
parent bc3b208f41
commit 01cd42bd51

View File

@ -143,7 +143,7 @@ ClockWidget.prototype = {
let msec_remaining = 60000 - (1000 * this.currentTime.getSeconds() +
this.currentTime.getMilliseconds());
if (msec_remaining < 500) {
this.currentTime.setMinutes(time.getMinutes() + 1);
this.currentTime.setMinutes(this.currentTime.getMinutes() + 1);
msec_remaining += 60000;
}