Files
architype/index.html
Ian Gulliver d3b70afc03 Initial commit
2019-05-22 22:50:27 +00:00

27 lines
481 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta name=viewport content="width=device-width, initial-scale=1.0">
<title>Architype</title>
<style>
</style>
</head>
<body>
<ul id="definition">
</ul>
<script>
document.addEventListener('keydown', e => {
console.log(e.key, e.shiftKey);
switch (e.key) {
case 'n':
let node = document.createElement('li');
node.innerText = 'foo';
document.getElementById('definition').appendChild(node);
break;
}
});
</script>
</body>