aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzyMode.js
diff options
context:
space:
mode:
authorBjörn2012-04-28 23:10:36 +0200
committerBjörn2012-04-28 23:10:36 +0200
commitc3ff01407be7befca1c8e4085dfb0567db87e4f7 (patch)
tree1ee9e1cd32fd09353e47080856e94748e8faed1b /fuzzyMode.js
parent03bf25b664bf5b066b39a7af22669fdd6483152e (diff)
downloadvimium-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.js1
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();
},