summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorAlexandre Pretto <anunes@thoughtworks.com>2015-01-08 19:16:31 -0200
committerPixpoa pairing <pixpoapairing@pixelated-project.org>2015-01-08 19:16:31 -0200
commit137ed70c956872616c4c6863afb79410866bdc80 (patch)
treebf73260320d9c23f9096cf896238fddcba1da3d4 /web-ui
parentf6ba6e16283dc5973d8b89ac7001ffad90556e93 (diff)
Fix jshint
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/app/js/helpers/view_helper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/app/js/helpers/view_helper.js b/web-ui/app/js/helpers/view_helper.js
index 48d9a9c7..83de4464 100644
--- a/web-ui/app/js/helpers/view_helper.js
+++ b/web-ui/app/js/helpers/view_helper.js
@@ -40,8 +40,8 @@ define(
function formatMailBody (mail) {
var body = mail.htmlBodyPart ?
htmlWhitelister.sanitize(mail.htmlBody, htmlWhitelister.tagPolicy) :
- addParagraphsToPlainText(mail.textPlainBody)
- return $(body)
+ addParagraphsToPlainText(mail.textPlainBody);
+ return $(body);
}
function moveCaretToEnd(el) {