uppy/example/main.js
2016-07-01 23:07:16 -04:00

11 lines
386 B
JavaScript

const Uppy = require('../src/index.js')
const uppy = new Uppy.Core({debug: true})
.use(Uppy.plugins.Modal, {trigger: '#uppyModalOpener'})
.use(Uppy.plugins.DragDrop, {target: Uppy.plugins.Modal})
// .use(Uppy.plugins.Dashboard, {target: Uppy.plugins.Modal})
.use(Uppy.plugins.Dummy, {target: Uppy.plugins.Modal})
uppy.run()
document.querySelector('#uppyModalOpener').click()