mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 13:00:44 -05:00
delete table row if file was deleted instead of just hide it
This commit is contained in:
parent
0f763f4508
commit
dbf2bfc8cd
1 changed files with 1 additions and 1 deletions
|
|
@ -334,7 +334,7 @@ var FileList={
|
|||
if (result.status == 'success') {
|
||||
$.each(files,function(index,file){
|
||||
var files = $('tr').filterAttr('data-file',file);
|
||||
files.hide();
|
||||
files.remove();
|
||||
files.find('input[type="checkbox"]').removeAttr('checked');
|
||||
files.removeClass('selected');
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue