-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (57 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>USON</title>
<meta charset="utf-8"/>
<script type="module" type="text/javascript">
/* USON browser demonstration page */
"use strict"
import {Core} from "../core-js/core.mjs";
Core.infect();
import {USON} from "./uson.mjs";
let editor;
let tmout;
function parseUson() {
clearTimeout (tmout);
console.log (JSON.stringify (USON.parse (editor.value), null, 2));
}
function parseUsonTimeout() {
clearTimeout (tmout);
tmout = setTimeout (parseUson, 1000);
}
function main() {
editor = document.getElementById ("editor");
editor.addEventListener ("change", parseUson);
editor.addEventListener ("keyup", parseUsonTimeout);
tmout = null;
}
document.addEventListener ("DOMContentLoaded", main);
</script>
<style type="text/css">
body {
margin: 0;
border: 0;
padding: 0;
}
#container {
width: 100%;
height: 100vh;
border: 4em transparent solid;
box-sizing: border-box;
}
textarea {
font-size: 140%;
margin: 0;
border: 0;
padding: 0;
width: 100%;
height: 100%;
resize: none;
outline: none;
}
</style>
</head>
<body>
<div id="container"><textarea id="editor">{}</textarea></div>
</body>
</html>