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); }