summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@thoughtworks.com>2014-10-23 00:01:17 +0200
committerBruno Wagner <bwagner@thoughtworks.com>2014-10-23 00:01:17 +0200
commit91685d2db8ae5599c1ff421b55c9ee39706d3a3b (patch)
tree024682ab855408f4244b5f3ccc389718007fc1cf /web-ui
parentc8607421c25499966bc8aed21c3e4511cdf44690 (diff)
Fixed jshint error
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/app/js/services/model/mail.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/services/model/mail.js b/web-ui/app/js/services/model/mail.js
index 9d1e8711..3fa3ceca 100644
--- a/web-ui/app/js/services/model/mail.js
+++ b/web-ui/app/js/services/model/mail.js
@@ -84,7 +84,7 @@ define(['helpers/contenttype'],
headerLines = lines.slice(0, endOfHeaders);
headers = _.map(headerLines, function (headerLine) {
- return _.map(headerLine.split(':'), function(elem){return elem.trim()});
+ return _.map(headerLine.split(':'), function(elem){return elem.trim();});
});
return _.object(headers);