diff options
| author | sainaen | 2013-05-12 01:37:01 +0300 |
|---|---|---|
| committer | sainaen | 2013-05-12 01:37:01 +0300 |
| commit | 96a2e89108b92acd2ebeb857aecf74770c551001 (patch) | |
| tree | 4217cd31369ad3ad69627a7a6194e62197154bc5 | |
| parent | 5bd32a511da813d731f73c4d646c14a69c2515ff (diff) | |
| download | vimium-96a2e89108b92acd2ebeb857aecf74770c551001.tar.bz2 | |
Fix error with handlerStack in link_hints content script
| -rw-r--r-- | content_scripts/link_hints.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index 302acaac..b8f1c2e9 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -176,7 +176,7 @@ LinkHints = keyup: (event) => return if (event.keyCode != keyCodes.shiftKey) @setOpenLinkMode(prev_mode) if @isActive - @remove() + handlerStack.remove() }) # TODO(philc): Ignore keys that have modifiers. |
