aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Crosby2014-04-23 09:54:57 -0700
committerPhil Crosby2014-04-23 09:54:57 -0700
commit719afdc68eda011d1f30ea8fb76f92c51609ade4 (patch)
tree3d24e0389f6e081008b77827487b4e9281d4fb99
parent7207cb363f9db599a1ca385f70b5d876a05449c6 (diff)
parent96a2e89108b92acd2ebeb857aecf74770c551001 (diff)
downloadvimium-719afdc68eda011d1f30ea8fb76f92c51609ade4.tar.bz2
Merge pull request #838 from sainaen/fix_handlerStack
Fix minor error with handlerStack in content script
-rw-r--r--content_scripts/link_hints.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index f2479d0f..ca529b1f 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.