diff --git a/extension/lib/utils.coffee b/extension/lib/utils.coffee index dfd7cf0e..04ee39c7 100644 --- a/extension/lib/utils.coffee +++ b/extension/lib/utils.coffee @@ -86,7 +86,9 @@ isContentEditable = (element) -> isDevtoolsElement = (element) -> return false unless element.ownerGlobal - return Array.prototype.some.call(element.ownerGlobal.top.frames, isDevtoolsWindow) + return Array.prototype.some.call( + element.ownerGlobal.top.frames, isDevtoolsWindow + ) isDevtoolsWindow = (window) -> return window.location?.href in [ diff --git a/extension/lib/vim.coffee b/extension/lib/vim.coffee index 7212f493..7ac6ddc8 100644 --- a/extension/lib/vim.coffee +++ b/extension/lib/vim.coffee @@ -160,7 +160,7 @@ class Vim @_state.lastNotification = message @_parent.emit('notification', {vim: this, message}) if @options.notifications_enabled - @window.StatusPanel._label = message; + @window.StatusPanel._label = message _notifyPersistent: (message) -> @_state.persistentNotification = message @@ -171,7 +171,7 @@ class Vim hideNotification: -> @_parent.emit('hideNotification', {vim: this}) - @window.StatusPanel._label = ""; # or .update() + @window.StatusPanel._label = '' # or .update() @_state.lastNotification = null @_state.persistentNotification = null