Compare commits

..

2 Commits

Author SHA1 Message Date
2d0ec47679
fix markdown css 2024-11-23 22:58:11 +01:00
fd4463683d
no more flashbang 😔 2024-11-23 22:58:05 +01:00
3 changed files with 0 additions and 29 deletions

View File

@ -1 +0,0 @@
/pkg

View File

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<script type="module" src="index.js"></script>
<style>
html, body {
height: 100%;
}
</style>
</head>
<body>
<button id="open-computer">Open From Computer</button>
<canvas style="position: absolute;top:0;bottom: 0;left: 0;right: 0;margin:auto;"></canvas>
<canvas style="position: absolute;top:0;bottom: 0;left: 600;right: 0;margin:auto;"></canvas>
</body>
</html>

View File

@ -1,11 +0,0 @@
import init from './pkg/web.js';
async function run() {
try {
await init();
} catch(e) {
console.error(e);
}
}
run();