php_app/app/views/public/comments/create.js.erb
Nicolas Bally 5cf3a3e83d initial
2014-11-25 22:56:20 +01:00

12 lines
333 B
Plaintext

$("#comment_form").html("<%= escape_javascript(render(:partial => "form")) %>");
$("#comments").html("<%= escape_javascript(render(@comment.commentable.comments.where(:enabled => true).order("created_at DESC"))) %>");
$(document.body).animate({
'scrollTop': ( $("#comment_<%= @comment_id %>").offset().top - 150)
}, 700);