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

Replace expression closures (methods).

Expression closures are to be axed. See https://bugzil.la/1083458.
This commit is contained in:
Doug Kearns
2015-07-23 01:55:32 +10:00
parent c035aa936b
commit 77d59cdfd1
45 changed files with 1595 additions and 1045 deletions

View File

@@ -26,7 +26,9 @@ var ModuleBase = Class("ModuleBase", {
*/
requires: [],
toString: function () "[module " + this.constructor.className + "]"
toString: function () {
return "[module " + this.constructor.className + "]";
}
});
var _id = 0;