diff options
| author | Phil Crosby | 2012-06-17 00:19:24 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2012-06-17 00:19:24 -0700 | 
| commit | 79cd315d4568e3df009c313d5e4f882ab9fcc1c1 (patch) | |
| tree | b6ff06a87085084f0213a0c2d0a096f8f013dfc5 | |
| parent | 5de493d0740835e0d7dbd0e90bcc679df835547f (diff) | |
| download | vimium-79cd315d4568e3df009c313d5e4f882ab9fcc1c1.tar.bz2 | |
Fix a regression where link hint chars were passed through to the underlying page.
| -rw-r--r-- | content_scripts/link_hints.coffee | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index e454a1b6..9858882e 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -178,6 +178,7 @@ LinkHints =            @hideMarker(@hintMarkers[i])          for i of linksMatched            @showMarker(linksMatched[i], @markerMatcher.hintKeystrokeQueue.length) +    false # We've handled this key, so prevent propagation.    #    # When only one link hint remains, this function activates it in the appropriate way. | 
