uppy.ejs 693 B

123456789101112131415161718192021222324252627
  1. ---
  2. layout: false
  3. title: Uppy
  4. permalink: uppy/
  5. ---
  6. <!doctype html>
  7. <html>
  8. <head>
  9. <meta charset="utf-8">
  10. <title>uppy</title>
  11. </head>
  12. <body>
  13. <h1>Uppy is here</h1>
  14. <button id="uppyModalOpener">Open Modal</button>
  15. <link href="uppy.min.css" rel="stylesheet">
  16. <script src="uppy.min.js"></script>
  17. <script src="locales/ru_RU.min.js"></script>
  18. <script>
  19. var uppy = new Uppy.Core({locales: Uppy.locales.ru_RU, debug: true})
  20. // uppy.use(Uppy.plugins.DragDrop, {target: 'body'});
  21. .use(Uppy.plugins.Modal, {trigger: '#uppyModalOpener'})
  22. .use(Uppy.plugins.Dummy, {target: Uppy.plugins.Modal})
  23. .run();
  24. </script>
  25. </body>
  26. </html>