From 26be3c59b174eb9f1a6f73c67489738c7517ce8c Mon Sep 17 00:00:00 2001 From: rafael lisboa Date: Fri, 20 Feb 2015 15:08:24 -0200 Subject: Open draft e-mails in edit view when shown in the "all" tab --- web-ui/app/js/services/model/mail.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'web-ui/app/js/services') diff --git a/web-ui/app/js/services/model/mail.js b/web-ui/app/js/services/model/mail.js index 43ab4b86..34cba610 100644 --- a/web-ui/app/js/services/model/mail.js +++ b/web-ui/app/js/services/model/mail.js @@ -22,15 +22,15 @@ define(['helpers/contenttype'], var asMail = (function () { function isSentMail() { - return this.mailbox === 'SENT'; + return _.has(this, 'mailbox') && this.mailbox.toUpperCase() === 'SENT'; } function isDraftMail() { - return this.mailbox === 'DRAFTS'; + return _.has(this, 'mailbox') && this.mailbox.toUpperCase() === 'DRAFTS'; } function isInTrash() { - return this.mailbox && this.mailbox.toLowerCase() === 'trash'; + return _.has(this, 'mailbox') && this.mailbox.toUpperCase() === 'TRASH'; } function setDraftReplyFor(ident) { -- cgit v1.2.3