about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-07 00:20:23 -0500
committerJune McEnroe <june@causal.agency>2019-01-07 00:20:23 -0500
commit784a3f4a07f4af7c2b586df66f9af91e3cb5b95b (patch)
tree7b8a9232b0f5bfc33dfe87ca6a1f588842c8a0cb
parentFix explore image URL (diff)
downloadtorus-784a3f4a07f4af7c2b586df66f9af91e3cb5b95b.tar.gz
torus-784a3f4a07f4af7c2b586df66f9af91e3cb5b95b.zip
Add Q/Home binding in explore
-rw-r--r--explore.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/explore.html b/explore.html
index 6508cec..37967fa 100644
--- a/explore.html
+++ b/explore.html
@@ -78,6 +78,7 @@ Code is available from
 	rarr.onclick = () => move( 1,  0);
 	document.onkeydown = function(event) {
 		switch (event.key) {
+			case "Q": case "Home":       home.onclick(); break;
 			case "h": case "ArrowLeft":  larr.onclick(); break;
 			case "j": case "ArrowDown":  darr.onclick(); break;
 			case "k": case "ArrowUp":    uarr.onclick(); break;