Hi there! I love this plugin! Really, great work.

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 = function getDroppedFiles(dataTransfer) {
// Get all files from all subdirs. Works (at least) in Chrome, Mozilla, and Safari
if (dataTransfer.items[0] && 'webkitGetAsEntry' in dataTransfer.items[0]) {
return webkitGetAsEntryApi(dataTransfer);
// Otherwise just return all first-order files
} else {
return fallbackApi(dataTransfer);
}
};
I see this was introduced in version 0.4.5:
@uppy/dashboard: 鈿狅笍 breaking: new getDroppedFiles module that is an improvement over drag-drop we鈥檝e been using (#1440 / @lakesare)
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.
Thank you so much for reporting, as well as the kind words, it means a lot! We fixed your issue, it just hasn鈥檛 been released yet, stay tuned!
Released on npm, please update to the latest @uppy/[email protected]!
Works great! Thanks for this!