diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2015-01-09 10:28:36 -0200 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2015-01-09 10:28:36 -0200 |
commit | 69a0650615935e7fd6a20656c4248b95cbe10317 (patch) | |
tree | f7d60068002b572272191fa20c390684ed4805a6 /web-ui/app/js | |
parent | 1fa467c4972e11348e5ac9436d34e40345329789 (diff) |
Fixing jshint
Diffstat (limited to 'web-ui/app/js')
-rw-r--r-- | web-ui/app/js/helpers/view_helper.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/helpers/view_helper.js b/web-ui/app/js/helpers/view_helper.js index 5d4b99c2..01ab45ed 100644 --- a/web-ui/app/js/helpers/view_helper.js +++ b/web-ui/app/js/helpers/view_helper.js @@ -32,7 +32,7 @@ define( } function addParagraphsToPlainText(textPlainBody) { - return textPlainBody.replace(/^(.*?)$/mg, "<p>$1</p>"); + return textPlainBody.replace(/^(.*?)$/mg, '<p>$1</p>'); } function formatMailBody (mail) { |