fix reply-to-comment form buttons.

svn path=/plone.app.discussion/trunk/; revision=29405
This commit is contained in:
Timo Stollenwerk
2009-08-26 22:31:23 +00:00
parent 8e406ccf2d
commit 72ac358c4c
2 changed files with 3 additions and 3 deletions
@@ -72,8 +72,8 @@ jq(document).ready(function() {
reply_form.find("input[name='form.buttons.comment']").css("display", "none");
/* Show the reply and cancel buttons. */
reply_form.find("input[name='form.buttons.reply']").removeClass("hide");
reply_form.find("input[name='form.buttons.cancel']").removeClass("hide");
reply_form.find("input[name='form.buttons.reply']").css("display", "inline");
reply_form.find("input[name='form.buttons.cancel']").css("display", "inline");
/* Show the reply layer with a slide down effect */
reply_div.slideDown("slow");