summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-03-16 21:29:05 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-03-16 21:29:05 +0000
commit4771582b0acd244135313ffd69a2b3174dbebb2e (patch)
treec5341e75746e0848b044ed262de8b5e2b207a052
parent72502ac8e21ae63d1b806cb3afe7fcd4b2f962b1 (diff)
downloadmullvadvpn-4771582b0acd244135313ffd69a2b3174dbebb2e.tar.xz
mullvadvpn-4771582b0acd244135313ffd69a2b3174dbebb2e.zip
Fix minor lint issues
-rw-r--r--app/lib/tray-animator.js4
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);
}
/**