diff options
author | Alexandre Pretto <anunes@thoughtworks.com> | 2015-01-08 19:16:31 -0200 |
---|---|---|
committer | Pixpoa pairing <pixpoapairing@pixelated-project.org> | 2015-01-08 19:16:31 -0200 |
commit | 137ed70c956872616c4c6863afb79410866bdc80 (patch) | |
tree | bf73260320d9c23f9096cf896238fddcba1da3d4 /web-ui/app/js | |
parent | f6ba6e16283dc5973d8b89ac7001ffad90556e93 (diff) |
Fix jshint
Diffstat (limited to 'web-ui/app/js')
-rw-r--r-- | web-ui/app/js/helpers/view_helper.js | 4 |
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) { |