aboutsummaryrefslogtreecommitdiffstats
path: root/lib/handler_stack.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-01-11 15:01:12 +0000
committerStephen Blott2015-01-11 15:54:47 +0000
commit8066a3838ef44b010f6dfb46cea8b47c6bdfc087 (patch)
tree209fe896b61e34c6d622584d9e0d7773b288828e /lib/handler_stack.coffee
parentf76c15c6ae6565c0c08569a127974dfd3383ed88 (diff)
downloadvimium-8066a3838ef44b010f6dfb46cea8b47c6bdfc087.tar.bz2
Modes; yet more tweaks, yet more tests.
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 d671fb3a..fddc45db 100644
--- a/lib/handler_stack.coffee
+++ b/lib/handler_stack.coffee
@@ -49,7 +49,7 @@ class HandlerStack
result = handler[type].call @, event
@logResult 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