fix demo not working in IE 11 (es5), add Dropbox too

This commit is contained in:
Artur Paikin 2019-05-31 19:11:28 +03:00
parent 899557e446
commit 07397ed88b

View file

@ -167,11 +167,12 @@
})
.use(Uppy.GoogleDrive, { target: Uppy.Dashboard, companionUrl: COMPANION_ENDPOINT })
.use(Uppy.Instagram, { target: Uppy.Dashboard, companionUrl: COMPANION_ENDPOINT })
.use(Uppy.Dropbox, { target: Uppy.Dashboard, companionUrl: COMPANION_ENDPOINT })
.use(Uppy.Webcam, { target: Uppy.Dashboard })
.use(Uppy.Url, { target: Uppy.Dashboard, companionUrl: COMPANION_ENDPOINT })
.use(Uppy.Tus, { endpoint: TUS_ENDPOINT})
uppy.on('success', (files) => {
console.log(`Upload complete! Weve uploaded these files: ${files}`)
uppy.on('success', function (files) {
console.log('Upload complete! Weve uploaded these files:', files)
})
</script>