summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/reader.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/reader.js b/js/reader.js
index c97f2fe..e71d157 100644
--- a/js/reader.js
+++ b/js/reader.js
@@ -837,14 +837,14 @@ const Reader = {
if ($(".modal").is(":visible"))
return;
- // right or space
- if (e.which == 39 || e.which == 32) {
+ // right or space or pagedown
+ if (e.which == 39 || e.which == 32 || e.which == 34) {
e.preventDefault();
Reader.Page.next();
}
- // left
- if (e.which == 37) {
+ // left or pageup
+ if (e.which == 37 || e.which == 33) {
e.preventDefault();
Reader.Page.prev();
}