10 lines
287 B
Plaintext
10 lines
287 B
Plaintext
<% if @bulk_update_request.errors.any? %>
|
|
Danbooru.error(<%= j @bulk_update_request.errors.full_messages.join(',') %>);
|
|
<% else %>
|
|
if ($("#a-index").length) {
|
|
$("#request-status-for-<%= @bulk_update_request.id %>").html("queued");
|
|
} else {
|
|
location.reload();
|
|
}
|
|
<% end %>
|