From c5a0c4884a5ff426d9924ae4418df5e26e6b7579 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Wed, 14 Jan 2015 11:13:27 +0800 Subject: [PATCH] . --- static/js/bottomGroup.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/bottomGroup.js b/static/js/bottomGroup.js index 2bef9d3..acdb1ce 100644 --- a/static/js/bottomGroup.js +++ b/static/js/bottomGroup.js @@ -74,13 +74,13 @@ var bottomGroup = { }, fillOutput: function (data) { var $output = $('.bottom-window-group .output'); - + data = data.replace(/\n/g, '
'); - + if (-1 !== data.indexOf("
")) { data = Autolinker.link(data); } - + $output.find("div").html(data); $output.parent().scrollTop($output[0].scrollHeight); }