index.html 910 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Uppy test page</title>
  7. </head>
  8. <body>
  9. <script>onerror = function (message, source, line, col, error) {
  10. document.body.appendChild(document.createTextNode(message))
  11. document.body.appendChild(document.createTextNode(source))
  12. document.body.appendChild(document.createTextNode(line + ':' + col))
  13. }</script>
  14. <style>
  15. main {
  16. max-width: 700px;
  17. margin: auto;
  18. }
  19. #uppyDragDrop-progress {
  20. position: relative;
  21. }
  22. </style>
  23. <main>
  24. <h2>Uppy DragDrop + Tus</h2>
  25. <div>
  26. <div id="uppyDragDrop"></div>
  27. <div id="uppyDragDrop-progress"></div>
  28. </div>
  29. </main>
  30. <link href="uppy.min.css" rel="stylesheet">
  31. <script src="bundle.js"></script>
  32. </body>
  33. </html>