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:
@@ -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: {},
|
||||
|
||||
Reference in New Issue
Block a user