From 9516d667da390b463e6898f940c798c6bb0e0b91 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Fri, 23 Feb 2018 16:25:11 -0500 Subject: [PATCH] Rename `enabled` --> `isEnabled` --- js/notifications.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/js/notifications.js b/js/notifications.js index e89dddb97..d6c2db4bb 100644 --- a/js/notifications.js +++ b/js/notifications.js @@ -13,7 +13,7 @@ MESSAGE : 'message' }; - var enabled = false; + let isEnabled = false; var sound = new Audio('audio/NewMessage.mp3'); Whisper.Notifications = new (Backbone.Collection.extend({ @@ -30,10 +30,11 @@ console.log( 'updating notifications - count:', this.length, 'focused:', isFocused, - 'enabled:', enabled + 'isEnabled:', isEnabled ); - if (!enabled) { - return; // wait til we are re-enabled + + if (!isEnabled) { + return; } if (this.length === 0) { return; @@ -122,14 +123,14 @@ this.reset([]); }, enable: function() { - var update = !enabled; - enabled = true; - if (update) { + var shouldUpdate = !isEnabled; + isEnabled = true; + if (shouldUpdate) { this.update(); } }, disable: function() { - enabled = false; + isEnabled = false; }, }))();