Commit ce3d3eca authored by Dave Lawrence's avatar Dave Lawrence

Bug 714335 - Multiple clicks of the reply link on comments keeps adding the…

Bug 714335 - Multiple clicks of the reply link on comments keeps adding the reply text to the new comment box r/a=LpSolit
parent 7f598481
......@@ -35,7 +35,9 @@
/* <textarea id="comment"> */
var textarea = document.getElementById('comment');
textarea.value += replytext;
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