use slideUp() instead of hide() jquery function to hide the reply form.

svn path=/plone.app.discussion/trunk/; revision=27264
This commit is contained in:
Timo Stollenwerk 2009-06-02 16:36:16 +00:00
parent b9aeabedb1
commit 47911fa24a

View File

@ -60,5 +60,5 @@ function removeReplyToCommentForm(comment_id) {
/* Find the reply-to-comment form and hide and remove it again. */
reply_to_comment_form = jq("#comment-" + comment_id).find(".reply")
reply_to_comment_form.remove(reply_to_comment_form.hide("slow"))
reply_to_comment_form.remove(reply_to_comment_form.slideUp("slow"))
}