chanced / filedrop-svelte

File dropzone for Svelte.
MIT License
110 stars 12 forks source link

Solution for dragEnter and dragLeave being fired on child elements #9

Closed IsAvaible closed 2 years ago

IsAvaible commented 2 years ago

This is a solution for Issue 6, that works by keeping track of the number of times dragEnter and dragLeave were fired, and only dispatches an event when the counter reaches zero (implementing https://stackoverflow.com/a/21002544).

IsAvaible commented 2 years ago

Accidentally wrote and ( && ) instead of or ( || ), closing this pull request.