Files
danbooru/app/views/favorites/create.js.erb
2013-03-22 10:25:01 -07:00

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 %>