Nicolas Bally 761e075bb6 initial
2018-11-08 21:47:30 +01:00

8 lines
332 B
Plaintext

<% if @comment.parent_id == nil %>
$('#comments .form_place').html("<%= escape_javascript(render(:partial => "form"))%>");
<% else %>
$('#comment_<%= @comment.parent_id %>').children(".child_comments").children(".child_form_place").html("<%= escape_javascript(render(:partial => "form"))%>");
<% end %>
//$(".add_comment").hide();