uppy/example/index.html
2016-09-13 09:46:41 -04:00

23 lines
659 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 src="uppy.min.js"></script-->
<script>
// console.log(Uppy)
// var uppy = new Uppy.Core({locales: Uppy.locales.ru_RU, debug: true})
// .use(Uppy.Dashboard, {trigger: '#uppyModalOpener'})
// .use(Uppy.Dummy, {target: Uppy.Dashboard})
// .run();
// document.querySelector('#uppyModalOpener').click()
</script>
</body>
</html>