From 07179da4731a17eba827fd289992c8499ea46939 Mon Sep 17 00:00:00 2001 From: Phil Crosby Date: Sat, 5 May 2012 19:00:27 -0700 Subject: Fix a regression I introduced where we weren't using a refresh interval for the vomnibox --- fuzzyMode.js | 6 +++--- 1 file 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); }, } })(); -- cgit v1.2.3