projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '13767-reserve-ram-doc' closes #13767
[arvados.git]
/
apps
/
workbench
/
app
/
views
/
projects
/
remove_items.js.erb
1
<%# Copyright (C) The Arvados Authors. All rights reserved.
2
3
SPDX-License-Identifier: AGPL-3.0 %>
4
5
$(document).trigger('count-change');
6
<% @removed_uuids.each do |uuid| %>
7
$('[data-object-uuid=<%= uuid %>]').hide('slow', function() {
8
$(this).remove();
9
});
10
<% end %>