uppy/example/index.html
2016-11-15 09:47:36 -05:00

32 lines
899 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>uppy</title>
</head>
<body>
<h1>Uppy is here</h1>
<button id="uppyModalOpener">Open Modal</button>
<div class="Uppy">
<form class="UppyForm" action="/">
<input type="file" />
<button type="submit">Upload</button>
</form>
</div>
<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>