1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Uppy test page</title>
- </head>
- <body>
- <script>onerror = function (message, source, line, col, error) {
- document.body.appendChild(document.createTextNode(message))
- document.body.appendChild(document.createTextNode(source))
- document.body.appendChild(document.createTextNode(line + ':' + col))
- }</script>
- <style>
- main {
- max-width: 700px;
- margin: auto;
- }
- #uppyDragDrop-progress {
- position: relative;
- }
- </style>
- <main>
- <h2>Uppy DragDrop + Tus</h2>
- <div>
- <div id="uppyDragDrop"></div>
- <div id="uppyDragDrop-progress"></div>
- </div>
- </main>
- <link href="uppy.min.css" rel="stylesheet">
- <script src="bundle.js"></script>
- </body>
- </html>
|