8 lines
284 B
Plaintext
8 lines
284 B
Plaintext
<% if @comment_vote.is_negative? %>
|
|
$(".comment[data-comment-id=<%= @comment.id %>]").remove();
|
|
<% end %>
|
|
|
|
$("#comment-vote-up-link-for-<%= @comment.id %>").hide();
|
|
$("#comment-vote-down-link-for-<%= @comment.id %>").hide();
|
|
$("#comment-unvote-link-for-<%= @comment.id %>").show();
|