about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-16 15:39:33 -0500
committerJune McEnroe <june@causal.agency>2019-01-16 15:39:33 -0500
commitfa43bd428fdc99179005ecef0c4a099d4b95884c (patch)
treee5346ecbc1dbe6c9efb8cd4ac6b7fc1a73aaa632
parentDraw lines to tile edge (diff)
downloadtorus-fa43bd428fdc99179005ecef0c4a099d4b95884c.tar.gz
torus-fa43bd428fdc99179005ecef0c4a099d4b95884c.zip
Return false from keydown handler in explore
-rw-r--r--explore.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/explore.html b/explore.html
index d9b1ddb..58584a7 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>