summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/read.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/read.js b/js/read.js
index 8455a2c..e096379 100644
--- a/js/read.js
+++ b/js/read.js
@@ -47,8 +47,8 @@ function hotkey_handler(e) {
if ($(".modal").is(":visible"))
return;
- // right
- if (e.which == 39) {
+ // right or space
+ if (e.which == 39 || e.which == 32) {
e.preventDefault();
next_page();
}