Revert "Bug 711655 - 'reply' JS should insert at caret position"

This reverts commit b0f5a16e.
parent f1b9ed5d
......@@ -29,8 +29,8 @@ function replyToComment(id, real_id, replyto_header, text) {
/* <textarea id="comment"> */
var textarea = document.getElementById('comment');
if (!textarea.value.startsWith(replytext)) {
textarea.value = replytext+"\n"+textarea.value;
if (textarea.value != replytext) {
textarea.value += replytext;
}
textarea.focus();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment