From fce286d6b25ea0ffb76e1d63defd6c4cceb60d02 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 22 Nov 2007 05:31:38 +0000 Subject: [PATCH] fix the self reference in v.search.searchSubmitted --- content/find.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/find.js b/content/find.js index d56d7944..c37917ec 100644 --- a/content/find.js +++ b/content/find.js @@ -214,7 +214,7 @@ vimperator.Search = function () //{{{ // TODO: move to find() when reverse incremental searching is kludged in // need to find again for reverse searching if (backwards) - setTimeout(function () { self.findAgain(false); }, 0); + setTimeout(function () { vimperator.search.findAgain(false); }, 0); if (vimperator.options["hlsearch"]) this.highlight(searchString);