1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-24 11:01:25 +02:00

Replace expression closures (getters).

Expression closures are to be axed. See https://bugzil.la/1083458.
This commit is contained in:
Doug Kearns
2015-05-27 04:42:30 +10:00
parent ce82387cdd
commit 6e8040286a
48 changed files with 808 additions and 532 deletions
+2 -2
View File
@@ -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() {