Merge pull request #15755 from nextcloud/backport/15747/stable15

[stable15] Also allow dragging below the file list
This commit is contained in:
Roeland Jago Douma 2019-05-27 22:35:13 +02:00 committed by GitHub
commit 930432d20c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3203,6 +3203,7 @@
&& !self.$el.is(dropTarget) // dropped on list directly
&& !self.$el.has(dropTarget).length // dropped inside list
&& !dropTarget.is(self.$container) // dropped on main container
&& !self.$el.parent().is(dropTarget) // drop on the parent container (#app-content) since the main container might not have the full height
) {
e.preventDefault();
return false;