ClockFace: minor cleanup

No idea how that `true` got there, but it does nothing.
pull/1985/head
Richard de Boer 2022-06-19 20:00:54 +02:00
parent 6090b453c3
commit 9fb3fccb32
No known key found for this signature in database
GPG Key ID: 8721727971871937
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ ClockFace.prototype.resume = function() {
delete this._last;
this.paused = false;
if (this._resume) this._resume.apply(this);
this.tick(true);
this.tick();
};
/**