diff options
Diffstat (limited to 'history.html')
-rw-r--r-- | history.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/history.html b/history.html index c0f0369..8bd95da 100644 --- a/history.html +++ b/history.html @@ -143,6 +143,22 @@ function updateButtons() { currentDate.getTime() === today.getTime(); } +document.addEventListener('keydown', function(event) { + switch(event.key) { + case 'ArrowUp': + jumpDays(7); // Vorwärts um 1 Stunde + break; + case 'ArrowDown': + jumpDays(-7); // Rückwärts um 1 Stunde + break; + case 'ArrowRight': + jumpDays(1); // Vorwärts um 15 Minuten + break; + case 'ArrowLeft': + jumpDays(-1); // Rückwärts um 15 Minuten + break; + } +}); // Initial gallery setup updateGallery(); |