mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-22 08:05:46 +01:00
Replace expression closures (function expressions - named and dynamic this).
Expression closures are to be axed. See https://bugzil.la/1083458. Leaving deprecated() and literal() calls and method shorthand syntax conversions until after the ESR overlap.
This commit is contained in:
@@ -76,7 +76,9 @@ var Config = Module("config", ConfigBase, {
|
||||
dactyl.beep();
|
||||
},
|
||||
|
||||
completers: Class.Memoize(function () update({ mailfolder: "mailFolder" }, this.__proto__.completers)),
|
||||
completers: Class.Memoize(function () {
|
||||
return update({ mailfolder: "mailFolder" }, this.__proto__.completers);
|
||||
}),
|
||||
|
||||
dialogs: {
|
||||
about: ["About Thunderbird",
|
||||
|
||||
Reference in New Issue
Block a user