Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link href="https://transloadit.edgly.net/releases/uppy/v0.25.2/dist/uppy.min.css" rel="stylesheet">
  4. <title>Test Uppy</title>
  5. </head>
  6.  
  7. <body>
  8. <div id="drag-drop-area"></div>
  9. </body>
  10.  
  11. <script src="https://transloadit.edgly.net/releases/uppy/v0.25.2/dist/uppy.min.js"></script>
  12. <script>
  13. const uppy = Uppy.Core()
  14. uppy.use(Uppy.Dashboard, { target: '#drag-drop-area', inline: true, height: 450 })
  15. uppy.use(Uppy.Webcam, { target: Uppy.Dashboard })
  16. uppy.use(Uppy.Tus, { endpoint: 'https://master.tus.io/files/' })
  17. </script>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement