Nicolas Bally 8e18de4077 initial
2016-08-03 00:22:29 +02:00

8 lines
332 B
Plaintext
Executable File

<% 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();