2411: Add copyright notices to everything.
[arvados.git] / apps / workbench / app / views / projects / remove_items.js.erb
index 5444cbe3f604b11707cc5801a3e39b7d6f4a6f39..1ae95cbb9aad921884c848a2e382a30ff9f24072 100644 (file)
@@ -1,5 +1,10 @@
+<%# Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 %>
+
+$(document).trigger('count-change');
 <% @removed_uuids.each do |uuid| %>
-$('[data-object-uuid=<%= uuid %>]').hide('slow', function() {
-    $(this).remove();
-});
+       $('[data-object-uuid=<%= uuid %>]').hide('slow', function() {
+           $(this).remove();
+       });
 <% end %>