mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-21 01:15:35 +00:00
24 lines
690 B
HTML
24 lines
690 B
HTML
<!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="../dist/uppy.min.css" rel="stylesheet">
|
|
<script src="../dist/uppy.min.js"></script>
|
|
<script src="../dist/locales/ru_RU.min.js"></script>
|
|
<script>
|
|
var uppy = new Uppy.Core({locales: Uppy.locales.ru_RU, debug: true})
|
|
.use(Uppy.plugins.Modal, {trigger: '#uppyModalOpener'})
|
|
.use(Uppy.plugins.Dummy, {target: Uppy.plugins.Modal})
|
|
.run();
|
|
</script>
|
|
|
|
<script>
|
|
document.querySelector('#uppyModalOpener').click()
|
|
</script>
|
|
</body>
|
|
</html>
|