1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-30 18:53:32 +02:00

Replace expression closures (command/option/mapping definitions).

Expression closures are to be axed. See https://bugzil.la/1083458.
This commit is contained in:
Doug Kearns
2015-07-23 01:15:41 +10:00
parent 85eede1ee2
commit 779752d776
33 changed files with 518 additions and 339 deletions

View File

@@ -164,7 +164,9 @@ var Config = Module("config", ConfigBase, {
window.MailOfflineMgr.toggleOfflineStatus();
return value;
},
getter: function () window.MailOfflineMgr.isOnline()
getter: function () {
return window.MailOfflineMgr.isOnline();
}
});
}
});