1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 16:04:12 +01:00

Fix search suggestions.

This commit is contained in:
Kris Maglione
2011-01-11 23:28:01 -05:00
parent 7ffdb4af7b
commit 76842038dc
2 changed files with 19 additions and 26 deletions

View File

@@ -912,9 +912,9 @@ var Completion = Module("completion", {
// Will, and should, throw an error if !(c in opts)
Array.forEach(complete, function (c) {
let completer = completion.urlCompleters[c];
context.fork.apply(context, [c, 0, completion, completer.completer].concat(completer.args));
});
let completer = this.urlCompleters[c];
context.fork.apply(context, [c, 0, this, completer.completer].concat(completer.args));
}, this);
},
urlCompleters: {},