We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you use for instance Jquery UI to make a file list to be droppable (for something else than a file), a messages error occurs:
Cannot read property 'types' of undefined
There is a simple fix, line 1862, change:
ss.DragAndDrop = { _dragFileCheck: function( e ) { if ( e.dataTransfer.types ) {
To
ss.DragAndDrop = { _dragFileCheck: function( e ) { if ( e.dataTransfer && e.dataTransfer.types ) {
The text was updated successfully, but these errors were encountered:
Fix dropzone (LPology#207)
36f0b4d
See LPology#207
No branches or pull requests
When you use for instance Jquery UI to make a file list to be droppable (for something else than a file), a messages error occurs:
There is a simple fix, line 1862, change:
To
The text was updated successfully, but these errors were encountered: