diff options
| author | Phil Crosby | 2012-05-05 19:00:27 -0700 |
|---|---|---|
| committer | Phil Crosby | 2012-05-05 19:00:27 -0700 |
| commit | 07179da4731a17eba827fd289992c8499ea46939 (patch) | |
| tree | cfd855d41d02c040be4f15c191252244067e9484 | |
| parent | 6b3eea3c55519599bc6e5b9764604d5daa0bdd29 (diff) | |
| download | vimium-07179da4731a17eba827fd289992c8499ea46939.tar.bz2 | |
Fix a regression I introduced where we weren't using a refresh interval for the vomnibox
| -rw-r--r-- | fuzzyMode.js | 6 |
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); }, } })(); |
