bind stack and register cell edits

cleanup prep for merge
This commit is contained in:
Rachel Powers
2024-04-08 13:42:01 -07:00
parent ef0d2e6327
commit fd114f42fc
10 changed files with 758 additions and 90 deletions

View File

@@ -12,6 +12,30 @@
<meta property="og:url" content="https://ryex.github.io/ic10emu/" />
<link rel="stylesheet" href="./main.css">
<style>
body {
opacity: 0;
}
body.ready {
opacity: 1;
transition: 0.25s opacity;
}
</style>
<script type="module">
await Promise.allSettled([
customElements.whenDefined('ic10emu-app'),
customElements.whenDefined('ace-ic10'),
customElements.whenDefined('vm-ui'),
customElements.whenDefined('vm-ic-controls'),
customElements.whenDefined('vm-ic-registers'),
customElements.whenDefined('vm-ic-stack')
]);
// Button, card, and rating are registered now! Add
// the `ready` class so the UI fades in.
document.body.classList.add('ready');
</script>
</head>