uppy/examples/multiple-instances/main.js
2018-04-30 12:17:13 +02:00

30 lines
628 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 })
const b = Uppy({
id: 'b',
debug: true
})
.use(Dashboard, {
target: '#b',
inline: true,
width: 400
})
.use(GoldenRetriever, { serviceWorker: false })
window.a = a
window.b = b