You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current approach with dropRoot: Document | ShadowRoot works well, if the DragEvent is caught within the shadow DOM but fails in cases, where either
the dropRoot is outside the shadow DOM (e.g. because the shadow DOM is not loaded yet) - or
the DragEvent should be caught inside AND outside of the shadow DOM
The current approach with
dropRoot: Document | ShadowRoot
works well, if the DragEvent is caught within the shadow DOM but fails in cases, where eitherin those cases, native DnD could be implemented using Event: composedPath :
e.g.
This approach fails with drag-drop-touch-js because Event: composed and Event: composedPath are not set.
I will create a pull request to set
composed
andcomposedPath
and link it to this issue.The text was updated successfully, but these errors were encountered: