aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Crosby2012-05-05 19:00:27 -0700
committerPhil Crosby2012-05-05 19:00:27 -0700
commit07179da4731a17eba827fd289992c8499ea46939 (patch)
treecfd855d41d02c040be4f15c191252244067e9484
parent6b3eea3c55519599bc6e5b9764604d5daa0bdd29 (diff)
downloadvimium-07179da4731a17eba827fd289992c8499ea46939.tar.bz2
Fix a regression I introduced where we weren't using a refresh interval for the vomnibox
-rw-r--r--fuzzyMode.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/fuzzyMode.js b/fuzzyMode.js
index 8d9329ef..0233652a 100644
--- a/fuzzyMode.js
+++ b/fuzzyMode.js
@@ -211,8 +211,8 @@ var fuzzyMode = (function() {
// public interface
return {
- activateAll: function() { start("omni", false, 100); },
- activateAllNewTab: function() { start("omni", true, 100); },
- activateTabs: function() { start("tabs", false, 0); },
+ activateAll: function() { start("omni", 100); },
+ activateAllNewTab: function() { start("omni", 100); },
+ activateTabs: function() { start("tabs", 0); },
}
})();