diff options
| author | Ilya Sukhar | 2010-10-05 10:52:17 -0700 | 
|---|---|---|
| committer | Ilya Sukhar | 2010-10-05 10:52:17 -0700 | 
| commit | 1ad34dcea418bf062564d349207d3b6cbcb526a3 (patch) | |
| tree | 881826f7ddb9bfedd4236544349b7033823edf72 | |
| parent | 9d9bd40ae050ae4b5b9665fcdde4c60e3486cc87 (diff) | |
| download | vimium-1ad34dcea418bf062564d349207d3b6cbcb526a3.tar.bz2 | |
Fixed #221. Thanks hbt.
| -rw-r--r-- | linkHints.js | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/linkHints.js b/linkHints.js index 7593a630..16d6fcbf 100644 --- a/linkHints.js +++ b/linkHints.js @@ -208,6 +208,7 @@ function updateLinkHints() {        matchedLink.focus();        // When focusing a textbox, put the selection caret at the end of the textbox's contents.        matchedLink.setSelectionRange(matchedLink.value.length, matchedLink.value.length); +      deactivateLinkHintsMode();      } else {        // When we're opening the link in the current tab, don't navigate to the selected link immediately;        // we want to give the user some feedback depicting which link they've selected by focusing it. | 
