From 3156a20664af58b1340a92c55c1ce374933ac623 Mon Sep 17 00:00:00 2001 From: Mario Volke Date: Tue, 23 Sep 2014 12:09:00 +0200 Subject: [PATCH] fix jshint --- src/js/controller/read-sandbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/controller/read-sandbox.js b/src/js/controller/read-sandbox.js index af2da14..7a778e1 100644 --- a/src/js/controller/read-sandbox.js +++ b/src/js/controller/read-sandbox.js @@ -7,7 +7,7 @@ if (e.data.html) { // display html mail body - html = '
' + e.data.html + '
';; + html = '
' + e.data.html + '
'; } else if (e.data.text) { // diplay text mail body by with colored conversation nodes html = renderNodes(parseConversation(e.data.text));