mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
prefer closest over parent
closest will search up the tree
This commit is contained in:
parent
c40515c33f
commit
adb5de4a88
1 changed files with 1 additions and 1 deletions
|
|
@ -487,7 +487,7 @@ var folderDropOptions={
|
|||
return false;
|
||||
}
|
||||
|
||||
var target = $(this).parent('tr').data('file');
|
||||
var target = $(this).closest('tr').data('file');
|
||||
|
||||
var files = ui.helper.find('tr');
|
||||
$(files).each(function(i,row) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue