diff options
author | June McEnroe <june@causal.agency> | 2019-01-16 15:39:33 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-16 15:39:33 -0500 |
commit | 7a6ff732c92bb3ea5d1ddf6c26d33febd18ae040 (patch) | |
tree | a5b2f77d53f7c1f2e304c465190e1e716dabf2bf | |
parent | Draw lines to tile edge (diff) | |
download | torus-7a6ff732c92bb3ea5d1ddf6c26d33febd18ae040.tar.gz torus-7a6ff732c92bb3ea5d1ddf6c26d33febd18ae040.zip |
Return false from keydown handler in explore
Diffstat (limited to '')
-rw-r--r-- | explore.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/explore.html b/explore.html index 6fa5858..37efd85 100644 --- a/explore.html +++ b/explore.html @@ -16,6 +16,8 @@ button.arr { font-size: 150%; } </style> <p> +A collaborative ASCII art project. +<p> <a href="ssh://torus@ascii.town"><code>ssh torus@ascii.town</code></a> <p> <img id="tile" src="tile.png"> @@ -105,5 +107,6 @@ Code is available from case "k": case "ArrowUp": uarr.onclick(); break; case "l": case "ArrowRight": rarr.onclick(); break; } + return false; } </script> |