summaryrefslogtreecommitdiff
path: root/web-ui/app/js/services
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2014-10-09 11:04:52 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2014-10-09 11:04:52 +0200
commite605929f9be56f01795fdc904d98cbe3f91984e3 (patch)
tree90d491a53453828ac99147eb8c91cbc075df46fa /web-ui/app/js/services
parentcaa949af3c5698902f86d1e72e44cbe6e495dbdd (diff)
Fixed jshint warnings.
Diffstat (limited to 'web-ui/app/js/services')
-rw-r--r--web-ui/app/js/services/model/mail.js4
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) {