LPology / Simple-Ajax-Uploader

Javascript file upload plugin with progress bar support. Works in all major browsers, including IE7+, Chrome, Firefox, Safari, and Opera. No dependencies - use it with or without jQuery.
995 stars 267 forks source link

Dropzone making non-file draggables to bug (simple fix) #207

Open theredled opened 6 years ago

theredled commented 6 years ago

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 ) {