diff options
author | June McEnroe <june@causal.agency> | 2019-01-07 00:20:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-07 00:20:23 -0500 |
commit | 9d0a9f16cffd135220970cd0ba944b88400a734e (patch) | |
tree | 44230dca0f4832e6667dd4c5d04163ef49eff0a6 | |
parent | Fix explore image URL (diff) | |
download | torus-9d0a9f16cffd135220970cd0ba944b88400a734e.tar.gz torus-9d0a9f16cffd135220970cd0ba944b88400a734e.zip |
Add Q/Home binding in explore
-rw-r--r-- | explore.html | 1 |
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; |