add slidedown effect when the reply-to-comment form is opened.

svn path=/plone.app.discussion/trunk/; revision=27310
This commit is contained in:
Timo Stollenwerk 2009-06-05 07:07:18 +00:00
parent 1ad75fa84f
commit 854f98ebbe
1 changed files with 3 additions and 2 deletions

View File

@ -19,8 +19,9 @@ function createReplyToCommentForm(comment_id) {
* the regular comment form and insert it after the reply button of the
* current comment.
*/
reply_div = jq("#commenting").clone(true); /* select the clone, not the original */
reply_div.insertAfter(button, reply_div.show("slow"));
reply_div = jq("#commenting").clone(true);
reply_div.insertAfter(button).css("display", "none")
reply_div.slideDown("slow");
/* Remove id="reply" attribute, since we use it to uniquely
the main reply form. */