]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 714335 - Multiple clicks of the reply link on comments keeps adding the reply...
authorDave Lawrence <dlawrence@mozilla.com>
Fri, 13 Jan 2012 18:37:52 +0000 (13:37 -0500)
committerDave Lawrence <dlawrence@mozilla.com>
Fri, 13 Jan 2012 18:37:52 +0000 (13:37 -0500)
r/a=LpSolit

template/en/default/bug/comments.html.tmpl

index 3d9b652ea4b72dbb727fc9db304d205cc291863f..d6a9fcca203be1d3e554efcd12f4a302ffb22ed7 100644 (file)
@@ -35,7 +35,9 @@
 
       /* <textarea id="comment"> */
       var textarea = document.getElementById('comment');
-      textarea.value += replytext;
+      if (textarea.value != replytext) {
+          textarea.value += replytext;
+      }
 
       textarea.focus();
   }