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

Add 'chrome:*':laissez-faire to 'strictfocus'.

This commit is contained in:
Kris Maglione
2011-06-22 11:56:21 -04:00
parent fe3decf83a
commit 4eef1b0709
2 changed files with 2 additions and 2 deletions

View File

@@ -437,7 +437,7 @@ var Option = Class("Option", {
bang: bang,
filter: filter,
result: result !== undefined ? result : !bang,
toString: function toString() this.bang + Option.quote(this.filter) +
toString: function toString() this.bang + Option.quote(this.filter, /:/) +
(typeof this.result === "boolean" ? "" : ":" + quote(this.result)),
});
},