10 lines
341 B
Plaintext
10 lines
341 B
Plaintext
<% if @error_msg %>
|
|
Danbooru.error("<%= @error_msg %>");
|
|
<% else %>
|
|
$("a#add-to-favorites").hide();
|
|
$("a#remove-from-favorites").show();
|
|
$("#score-for-post-<%= @post.id %>").html(<%= @post.score %>);
|
|
$("#favcount-for-post-<%= @post.id %>").html(<%= @post.fav_count %>);
|
|
Danbooru.notice("You have favorited this post");
|
|
<% end %>
|