1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 09:27:58 +01:00

Fix last commit.

This commit is contained in:
Kris Maglione
2010-09-30 10:15:42 -04:00
parent fe429284d1
commit 08c582fc5c

View File

@@ -358,9 +358,9 @@ const JavaScript = Module("javascript", {
let args = {
completer: compl,
anchored: true,
filter: string || "",
filter: last == null ? key : string,
last: last,
prefix: key || ""
prefix: last != null ? key : ""
};
this.context.forceAnchored = true;