uppy/examples/multiple-instances/main.js
Kevin van Zonneveld 14c8a8cde8
autofix code
2021-03-09 20:59:02 +01:00

30 lines
624 B
JavaScript

const Uppy = require('@uppy/core')
const Dashboard = require('@uppy/dashboard')
const GoldenRetriever = require('@uppy/golden-retriever')
// Initialise two Uppy instances with the GoldenRetriever plugin,
// but with different `id`s.
const a = new Uppy({
id : 'a',
debug: true,
})
.use(Dashboard, {
target: '#a',
inline: true,
width : 400,
})
.use(GoldenRetriever, { serviceWorker: false })
const b = new Uppy({
id : 'b',
debug: true,
})
.use(Dashboard, {
target: '#b',
inline: true,
width : 400,
})
.use(GoldenRetriever, { serviceWorker: false })
window.a = a
window.b = b