mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-02 16:45:45 +01:00
Replace expression closures (getters).
Expression closures are to be axed. See https://bugzil.la/1083458.
This commit is contained in:
@@ -125,9 +125,9 @@ var Mail = Module("mail", {
|
||||
return "\"" + recipient + "\"";
|
||||
},
|
||||
|
||||
get currentAccount() this.currentFolder.rootFolder,
|
||||
get currentAccount() { return this.currentFolder.rootFolder; },
|
||||
|
||||
get currentFolder() gFolderTreeView.getSelectedFolders()[0],
|
||||
get currentFolder() { return gFolderTreeView.getSelectedFolders()[0]; },
|
||||
|
||||
/** @property {[nsISmtpServer]} The list of configured SMTP servers. */
|
||||
get smtpServers() {
|
||||
|
||||
Reference in New Issue
Block a user