1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 17:24:12 +01:00

Death to E4X and stuff.

This commit is contained in:
Kris Maglione
2012-11-28 20:24:44 -08:00
parent 23b6c07666
commit 276956284e
19 changed files with 129 additions and 88 deletions

View File

@@ -487,7 +487,9 @@ var Modes = Module("modes", {
update(StackElement.prototype, {
get toStringParams() !loaded.modes ? this.main.name : [
this.main.name,
<>({ modes.all.filter(function (m) this.extended & m, this).map(function (m) m.name).join("|") })</>
["(", modes.all.filter(function (m) this.extended & m, this)
.map(function (m) m.name).join("|"),
")"].join("")
]
});
return StackElement;