Files
danbooru/app/views/comment_votes/destroy.js.erb
2018-07-27 15:24:05 -07:00

8 lines
281 B
Plaintext

<% if @error %>
$(window).trigger("danbooru:error", "<%= j @error.to_s %>");
<% else %>
$("#comment-vote-up-link-for-<%= @comment.id %>").show();
$("#comment-vote-down-link-for-<%= @comment.id %>").show();
$("#comment-unvote-link-for-<%= @comment.id %>").hide();
<% end %>