Files
danbooru/app/views/comment_votes/destroy.js.erb

7 lines
192 B
Plaintext

<% if @error %>
Danbooru.error("<%= j @error.to_s %>");
<% else %>
<% if @comment_vote.is_negative? %>
$(".comment[data-comment-id=<%= @comment.id %>]").remove();
<% end %>
<% end %>