(fix) added more proper menu activation for the mailer

This commit is contained in:
Ludovic Marcotte
2015-07-21 15:48:31 -04:00
parent d7c008f2d9
commit 82ed44ee31
2 changed files with 5 additions and 5 deletions
@@ -258,7 +258,7 @@
* @returns true if the mailbox is not a special folder.
*/
Mailbox.prototype.$isEditable = function() {
return _.contains(['folder', 'inbox', 'draft', 'sent', 'trash'], this.type);
return this.type == 'folder';
};
/**