From af3c8db859259d69e6737a33ac0d7858c9170236 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Tue, 30 Dec 2014 00:33:41 +0100 Subject: [PATCH] Removed not needed debug info. --- app/assets/javascripts/app/lib/app_post/utils.js.coffee | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/assets/javascripts/app/lib/app_post/utils.js.coffee b/app/assets/javascripts/app/lib/app_post/utils.js.coffee index 8878a2d33..1fcf934bd 100644 --- a/app/assets/javascripts/app/lib/app_post/utils.js.coffee +++ b/app/assets/javascripts/app/lib/app_post/utils.js.coffee @@ -10,13 +10,9 @@ class App.Utils # htmlEscapedAndLinkified = App.Utils.text2html( rawText ) @text2html: ( ascii ) -> - console.log('AA0', ascii) ascii = @textCleanup(ascii) #ascii = @htmlEscape(ascii) - console.log('AA1', ascii) ascii = @linkify(ascii) - #ascii.replace( /\n/g, '
' ) - console.log('AA', ascii) ascii = '
' + ascii.replace(/\n/g, '
') + '
' ascii.replace(/
<\/div>/g, '

')