diff options
| -rw-r--r-- | app/lib/tray-animator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/tray-animator.js b/app/lib/tray-animator.js index 7f0374955c..6d098c4a62 100644 --- a/app/lib/tray-animator.js +++ b/app/lib/tray-animator.js @@ -45,7 +45,7 @@ export class TrayAnimator { * @memberOf TrayAnimator */ start() { - if(this._started) { return; }; + if(this._started) { return; } this._timer = this._nextFrame(); this._started = true; @@ -76,7 +76,7 @@ export class TrayAnimator { * @memberOf TrayAnimator */ _nextFrame() { - return setTimeout(::this._updateAnimationFrame, this._animation.speed) + return setTimeout(::this._updateAnimationFrame, this._animation.speed); } /** |
