uppy/examples/multiple-instances/main.js
2018-04-23 12:04:19 +02:00

32 lines
646 B
JavaScript

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