From 01cd42bd5178fd3008607df9941fad6130e07c0e Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 22 Mar 2010 12:12:04 -0400 Subject: [PATCH] fix a missed variable rename in 33dca516 --- js/ui/widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/widget.js b/js/ui/widget.js index 1cb740f72..0d50a1926 100644 --- a/js/ui/widget.js +++ b/js/ui/widget.js @@ -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; }