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
We are using this plugin and need to support I.E. 11.
We need to have drag-and-drop functionality work.
When using this feature in I.E.11, files do not show up.
Steps to Reproduce
Visit this deploy of this codesandbox of Uppy running in 0.3.5 in I.E.11. When you drag and drop, it emits an error the console, which it emitted from this func:
module.exports=functiongetDroppedFiles(dataTransfer){// Get all files from all subdirs. Works (at least) in Chrome, Mozilla, and Safariif(dataTransfer.items[0]&&'webkitGetAsEntry'indataTransfer.items[0]){returnwebkitGetAsEntryApi(dataTransfer);// Otherwise just return all first-order files}else{returnfallbackApi(dataTransfer);}};
Hi there! I love this plugin! Really, great work.
Problem
Steps to Reproduce
Visit this deploy of this codesandbox of Uppy running in 0.3.5 in I.E.11. When you drag and drop, it emits an error the console, which it emitted from this func:
I see this was introduced in version 0.4.5:
Working version
I was able to get this feature working in I.E.11 when using version 0.3.4. Visit this deploy of this codesandbox to see it working.
The text was updated successfully, but these errors were encountered: