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