diff options
| author | mrmr1993 | 2017-10-29 14:42:29 +0000 | 
|---|---|---|
| committer | mrmr1993 | 2017-10-29 14:55:37 +0000 | 
| commit | ecb8531442daaca1e8a040e65cdc209f173b42c4 (patch) | |
| tree | aa62719114c7f4abf39b4420c5f39840c347b55e /content_scripts/mode.coffee | |
| parent | af74bf84adbe0abcf7fa491f352d31b417c78cd4 (diff) | |
| download | vimium-ecb8531442daaca1e8a040e65cdc209f173b42c4.tar.bz2 | |
Let handlerStack call consumeKeyup rather than calling it explicitly
Diffstat (limited to 'content_scripts/mode.coffee')
| -rw-r--r-- | content_scripts/mode.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/content_scripts/mode.coffee b/content_scripts/mode.coffee index 6f4bed29..a4a91c1f 100644 --- a/content_scripts/mode.coffee +++ b/content_scripts/mode.coffee @@ -82,7 +82,7 @@ class Mode          "keydown": (event) =>            return @continueBubbling unless KeyboardUtils.isEscape event            @exit event, event.target -          DomUtils.consumeKeyup event +          @suppressEvent      # If @options.exitOnBlur is truthy, then it should be an element.  The mode will exit when that element      # loses the focus. | 
