diff options
| author | Stephen Blott | 2017-03-09 09:54:46 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2017-03-09 09:55:12 +0000 | 
| commit | 10dcaa389958483a988a5bd86d3fd3d4e2799a77 (patch) | |
| tree | 4dbd1a8107161e0a09a75ac89e967e0ef193870c | |
| parent | 6828a9cb3664d58ebbc19e5ab9e61e7c575206a3 (diff) | |
| download | vimium-10dcaa389958483a988a5bd86d3fd3d4e2799a77.tar.bz2 | |
Fix #2445 (link hints with queue broken).
| -rw-r--r-- | content_scripts/link_hints.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index ac069c3c..741d42cf 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -128,7 +128,7 @@ LinkHints =          if isSuccess            # Wait for the next tick to allow the previous mode to exit.  It might yet generate a click event,            # which would cause our new mode to exit immediately. -          Utils.nextTick -> LinkHints.activateMode count-1, mode +          Utils.nextTick -> LinkHints.activateMode count-1, {mode}    activateModeToOpenInNewTab: (count) -> @activateMode count, mode: OPEN_IN_NEW_BG_TAB    activateModeToOpenInNewForegroundTab: (count) -> @activateMode count, mode: OPEN_IN_NEW_FG_TAB | 
