diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2014-10-09 11:04:52 +0200 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2014-10-09 11:04:52 +0200 |
commit | e605929f9be56f01795fdc904d98cbe3f91984e3 (patch) | |
tree | 90d491a53453828ac99147eb8c91cbc075df46fa | |
parent | caa949af3c5698902f86d1e72e44cbe6e495dbdd (diff) |
Fixed jshint warnings.
-rw-r--r-- | web-ui/app/js/services/model/mail.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/app/js/services/model/mail.js b/web-ui/app/js/services/model/mail.js index 9fe2bf44..89095948 100644 --- a/web-ui/app/js/services/model/mail.js +++ b/web-ui/app/js/services/model/mail.js @@ -23,11 +23,11 @@ define(['helpers/contenttype'], var asMail = (function () { function isSentMail() { - return this.mailbox == 'SENT'; + return this.mailbox === 'SENT'; } function isDraftMail() { - return this.mailbox == 'DRAFTS'; + return this.mailbox === 'DRAFTS'; } function normalize(recipients) { |