From 9b0a41a2b79b9d8e0d4b114d65799ad7f2b69f20 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 23 Apr 2021 14:20:28 +0100 Subject: [PATCH] Page up and down key shortcuts --- daemon.py | 2 ++ webapp_timeline.py | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index fa340b2af..0696f52c8 100644 --- a/daemon.py +++ b/daemon.py @@ -14671,6 +14671,8 @@ def runDaemon(brochMode: bool, # key shortcuts SHIFT + ALT + [key] httpd.accessKeys = { + 'Page up': '.', + 'Page down': ',', 'submitButton': 'y', 'followButton': 'f', 'blockButton': 'b', diff --git a/webapp_timeline.py b/webapp_timeline.py index 10b9748bf..2ee1a7ffd 100644 --- a/webapp_timeline.py +++ b/webapp_timeline.py @@ -661,7 +661,8 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, '
\n' + \ ' ' + \ + '' + \
             translate['Page up'] + '\n' + \ @@ -754,7 +755,8 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, '
\n' + \ ' ' + \ + '' + \
             translate['Page down'] + '\n' + \