# HG changeset patch # User neko259 # Date 2014-02-06 13:44:50 # Node ID 1d3b449c8f34812f17043513e10abe1574c3b41f # Parent 504f435b09505bcbc36f331650e054c8c9dff071 Add a line break after quote insertion diff --git a/boards/static/js/thread.js b/boards/static/js/thread.js --- a/boards/static/js/thread.js +++ b/boards/static/js/thread.js @@ -38,7 +38,7 @@ function addQuickReply(postId) { var textToAdd = '>>' + postId + '\n\n'; var selection = window.getSelection().toString(); if (selection.length > 0) { - textToAdd += '> ' + selection; + textToAdd += '> ' + selection + '\n\n'; } var textAreaId = 'textarea';