Index: lams_central/web/comments/reply.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/comments/reply.jsp,v diff -u -r1.2.2.4 -r1.2.2.5 --- lams_central/web/comments/reply.jsp 23 Feb 2016 14:23:03 -0000 1.2.2.4 +++ lams_central/web/comments/reply.jsp 20 Apr 2016 02:58:10 -0000 1.2.2.5 @@ -26,6 +26,14 @@ }); function replyFormSubmit() { + + var btnName = "replyCommentSubmitButton"; + if ( isDisabled(btnName) ) { + return false; + } + + disableButton(btnName); + var theForm = $(replyForm); if (validateBodyText($('#replyFormBody').val(), <%=CommentConstants.MAX_BODY_LENGTH%> @@ -56,6 +64,9 @@ ''); }); } // end validateBodyText + else { + enableButton(btnName); + } return false; } @@ -76,7 +87,7 @@