From 3f5dd1345396336faf425f8f46e6a9abfa9c6826 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 28 Jun 2009 17:20:05 +1000 Subject: [PATCH] Fix typo in finder.openPrompt refactoring. --- common/content/finder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/finder.js b/common/content/finder.js index 9fd22b52..32aadec8 100644 --- a/common/content/finder.js +++ b/common/content/finder.js @@ -357,7 +357,7 @@ function Finder() //{{{ openPrompt: function (mode) { backwards = mode == modes.SEARCH_BACKWARD; - commandline.open(backwards ? "?" : "/", mode); + commandline.open(backwards ? "?" : "/", "", mode); // TODO: focus the top of the currently visible screen },