aboutsummaryrefslogtreecommitdiffstats
path: root/lib/handler_stack.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-10-10 07:24:54 +0100
committerStephen Blott2015-10-10 07:24:54 +0100
commit85e12c5006a11fec9790fc6725e8078ecdbc198f (patch)
treeed1611d45aea5525157022192880c3c29eab9e8e /lib/handler_stack.coffee
parentffc662a8dcff176bb58f008ab5142fb91802dd7c (diff)
parent7158cd670ae5824ebeb134fe3ec35472e4dc692f (diff)
downloadvimium-85e12c5006a11fec9790fc6725e8078ecdbc198f.tar.bz2
Merge pull request #1849 from smblott-github/suppress-trailing-key-events
Suppress trailing key events (after link hints).
Diffstat (limited to 'lib/handler_stack.coffee')
-rw-r--r--lib/handler_stack.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handler_stack.coffee b/lib/handler_stack.coffee
index b09d3183..c07d028b 100644
--- a/lib/handler_stack.coffee
+++ b/lib/handler_stack.coffee
@@ -48,7 +48,7 @@ class HandlerStack
result = handler[type].call @, event
@logResult eventNumber, type, event, handler, result if @debug
if not result
- DomUtils.suppressEvent event if @isChromeEvent event
+ DomUtils.suppressEvent event if @isChromeEvent event
return false
return true if result == @stopBubblingAndTrue
return false if result == @stopBubblingAndFalse