1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

Browser version

This commit is contained in:
Robin Appelman 2015-01-24 23:51:32 +01:00
commit 127b82aa96
3 changed files with 2623 additions and 0 deletions

28
index.html Normal file
View file

@ -0,0 +1,28 @@
<html>
<head>
<script src="browser.js"></script>
<style>
textarea {
width: 100%;
height: 200px;
}
#out {
height: 500px;
}
</style>
</head>
<body>
<input type="file" id="fileinput" />
<p>Demo header</p>
<textarea id="head">
</textarea>
<p>Demo summary</p>
<textarea id="out">
</textarea>
</body>
</html>