diff options
| author | Stephen Blott | 2014-11-02 08:48:09 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2014-11-02 08:48:09 +0000 | 
| commit | 28e9c8374bfc7a4fd479dbb958a4a87331fb0857 (patch) | |
| tree | e463ad96b2cd5e218ca01292f2c4781629ed705b /lib | |
| parent | 406f0e0e23266fbc483fc17602cd5dbe4a581168 (diff) | |
| parent | dafa166364ff9a30b0cc2f0d160fcbcfc01cc61e (diff) | |
| download | vimium-28e9c8374bfc7a4fd479dbb958a4a87331fb0857.tar.bz2 | |
Merge pull request #1219 from mrmr1993/fix-google-groups
Force our key event handlers to have the highest possible priority
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/dom_utils.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/dom_utils.coffee b/lib/dom_utils.coffee index dcdd5518..8c0445c5 100644 --- a/lib/dom_utils.coffee +++ b/lib/dom_utils.coffee @@ -129,7 +129,7 @@ DomUtils =    suppressEvent: (event) ->      event.preventDefault() -    event.stopPropagation() +    event.stopImmediatePropagation()  root = exports ? window  root.DomUtils = DomUtils | 
