fix a missed variable rename in 33dca516
This commit is contained in:
parent
bc3b208f41
commit
01cd42bd51
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user