From 47911fa24a2f2d733f922c4d4d986086f0e4f32b Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Tue, 2 Jun 2009 16:36:16 +0000 Subject: [PATCH] use slideUp() instead of hide() jquery function to hide the reply form. svn path=/plone.app.discussion/trunk/; revision=27264 --- .../app/discussion/browser/javascripts/reply_to_comment_form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plone/app/discussion/browser/javascripts/reply_to_comment_form.js b/plone/app/discussion/browser/javascripts/reply_to_comment_form.js index 42ed7f8..8e0aa4f 100644 --- a/plone/app/discussion/browser/javascripts/reply_to_comment_form.js +++ b/plone/app/discussion/browser/javascripts/reply_to_comment_form.js @@ -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")) }