diff options
| author | mrmr1993 | 2016-02-11 05:07:04 +0000 |
|---|---|---|
| committer | mrmr1993 | 2016-02-11 05:07:04 +0000 |
| commit | 2aa6af6d9f1b7394be460d66d34166451f04d2b2 (patch) | |
| tree | 43c08529d3bdf39b5dcc427eed6300ef573ad4be /content_scripts | |
| parent | 6bd8318fa1a7faf942cd56b8023f2947d84f3123 (diff) | |
| download | vimium-2aa6af6d9f1b7394be460d66d34166451f04d2b2.tar.bz2 | |
Change HelpDialog. to @ for methods inside the HelpDialog object
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 6 |
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) -> |
