1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-12 02:35:47 +01:00

Fix typo in finder.openPrompt refactoring.

This commit is contained in:
Doug Kearns
2009-06-28 17:20:05 +10:00
parent 63925afb03
commit 3f5dd13453

View File

@@ -357,7 +357,7 @@ function Finder() //{{{
openPrompt: function (mode) openPrompt: function (mode)
{ {
backwards = mode == modes.SEARCH_BACKWARD; backwards = mode == modes.SEARCH_BACKWARD;
commandline.open(backwards ? "?" : "/", mode); commandline.open(backwards ? "?" : "/", "", mode);
// TODO: focus the top of the currently visible screen // TODO: focus the top of the currently visible screen
}, },