diff --git a/files/assets/js/comments_v.js b/files/assets/js/comments_v.js index a187626aa..d053b0276 100644 --- a/files/assets/js/comments_v.js +++ b/files/assets/js/comments_v.js @@ -64,7 +64,9 @@ function toggleReplyBox(id) { text = text.replace(/\n> \n/g,"\n \n") text = text.split('> Reply')[0] if (!text.endsWith('\n')) text += '\n' - ta.value = text + + if (ta.value) ta.value += '\n' + text + else ta.value = text } ta.focus() }