Remove the nag message when an approver hasn't approved anything
recently. Also remove the modqueue random posts page. As of 3d410398a,
inactive approvers are now warned via dmails.
11 lines
383 B
Plaintext
11 lines
383 B
Plaintext
<% if @approval.errors.any? %>
|
|
Danbooru.error("Error: " + <%= @approval.errors.full_messages.join("; ").to_json.html_safe %>);
|
|
<% else %>
|
|
if ($("#c-posts #a-show").length) {
|
|
location.reload();
|
|
} else if ($("#c-moderator-post-queues").length) {
|
|
$("#c-moderator-post-queues #post-<%= @approval.post.id %>").hide();
|
|
Danbooru.notice("Post was approved");
|
|
}
|
|
<% end %>
|