Files
danbooru/app/views/favorites/create.js.erb
2013-05-11 18:00:28 -04:00

16 lines
543 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 %>);
<% if CurrentUser.is_gold? %>
$("#favlist").html("<%= escape_javascript(post_favlist(@post)) %>");
if (!$("#favlist").is(":visible")) {
$("#show-favlist-link").show();
}
<% end %>
Danbooru.notice("You have favorited this post");
<% end %>