-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
33 lines (33 loc) · 977 Bytes
/
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
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/wasm_exec.js"></script>
<script src="js/stats.min.js"></script>
<script type="text/javascript">
function fetchAndInstantiate(url, importObject) {
return fetch(url).then(response =>
response.arrayBuffer()
).then(bytes =>
WebAssembly.instantiate(bytes, importObject)
).then(results =>
results.instance
);
}
var go = new Go();
var mod = fetchAndInstantiate("lib.wasm", go.importObject);
window.onload = function () {
mod.then(function (instance) {
go.run(instance);
});
};
</script>
</head>
<body>
<script type="text/javascript">
var stats = new Stats();
stats.showPanel(1);
document.body.appendChild(stats.dom);
</script>
</body>
</html>