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:
@@ -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();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user