123456789101112131415161718192021222324252627 |
- ---
- layout: false
- title: Uppy
- permalink: uppy/
- ---
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>uppy</title>
- </head>
- <body>
- <h1>Uppy is here</h1>
- <button id="uppyModalOpener">Open Modal</button>
- <link href="uppy.min.css" rel="stylesheet">
- <script src="uppy.min.js"></script>
- <script src="locales/ru_RU.min.js"></script>
- <script>
- var uppy = new Uppy.Core({locales: Uppy.locales.ru_RU, debug: true})
- // uppy.use(Uppy.plugins.DragDrop, {target: 'body'});
- .use(Uppy.plugins.Modal, {trigger: '#uppyModalOpener'})
- .use(Uppy.plugins.Dummy, {target: Uppy.plugins.Modal})
- .run();
- </script>
- </body>
- </html>
|