From 2bd6db348ee2f26d40ffc1d6da4e0d14bac28263 Mon Sep 17 00:00:00 2001 From: Robert Richter Date: Sat, 28 Dec 2019 11:40:26 +0100 Subject: [PATCH] add console.log --- public/js/waip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/waip.js b/public/js/waip.js index 3835354..5f585ec 100644 --- a/public/js/waip.js +++ b/public/js/waip.js @@ -69,7 +69,7 @@ function break_text_15(text){ new_text = text.replace(/.{15}(\s+|\-+)+/g, "$&@") new_text = new_text.split(/@/); new_text= new_text.join("
"); - console.log(new_text); + //console.log(new_text); return new_text; }; @@ -78,7 +78,7 @@ function break_text_35(text){ var new_text; new_text = text.replace(/.{50}\S*\s+/g, "$&@").split(/\s+@/); new_text= new_text.join("
"); - console.log(new_text); + //console.log(new_text); return new_text; };