aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/vimium_frontend.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts/vimium_frontend.coffee')
-rw-r--r--content_scripts/vimium_frontend.coffee6
1 files changed, 3 insertions, 3 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index 382f0416..2897ae69 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -783,12 +783,12 @@ window.HelpDialog ?=
show: (html) ->
@init()
- return if HelpDialog.showing or !@isReady()
- HelpDialog.showing = true
+ return if @showing or !@isReady()
+ @showing = true
@helpUI.activate html
hide: ->
- HelpDialog.showing = false
+ @showing = false
@helpUI.hide()
toggle: (html) ->