diff options
| author | Stephen Blott | 2015-10-10 07:24:54 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-10-10 07:24:54 +0100 | 
| commit | 85e12c5006a11fec9790fc6725e8078ecdbc198f (patch) | |
| tree | ed1611d45aea5525157022192880c3c29eab9e8e /lib/handler_stack.coffee | |
| parent | ffc662a8dcff176bb58f008ab5142fb91802dd7c (diff) | |
| parent | 7158cd670ae5824ebeb134fe3ec35472e4dc692f (diff) | |
| download | vimium-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.coffee | 2 | 
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 | 
