diff options
| author | Björn | 2012-04-28 23:10:36 +0200 |
|---|---|---|
| committer | Björn | 2012-04-28 23:10:36 +0200 |
| commit | c3ff01407be7befca1c8e4085dfb0567db87e4f7 (patch) | |
| tree | 1ee9e1cd32fd09353e47080856e94748e8faed1b /fuzzyMode.js | |
| parent | 03bf25b664bf5b066b39a7af22669fdd6483152e (diff) | |
| download | vimium-c3ff01407be7befca1c8e4085dfb0567db87e4f7.tar.bz2 | |
blur input then hiding fuzzyMode
fixes that vimium doesn't work anymore when you open the selection in a
new tab because your typing will end up in fuzzy's input element
Diffstat (limited to 'fuzzyMode.js')
| -rw-r--r-- | fuzzyMode.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzzyMode.js b/fuzzyMode.js index 37107a07..b6520e36 100644 --- a/fuzzyMode.js +++ b/fuzzyMode.js @@ -46,6 +46,7 @@ var fuzzyMode = (function() { hide: function() { this.box.style.display = 'none'; this.completionList.style.display = 'none'; + this.input.blur(); handlerStack.pop(); }, |
