From 8103839e72fe35bee3006cd33a40ce99c846ca82 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Tue, 17 Jun 2025 16:02:43 +0200 Subject: [PATCH] Add mousemove event to show video controls and reset timer for improved user interaction --- static/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/index.html b/static/index.html index b20cd82..a85a760 100644 --- a/static/index.html +++ b/static/index.html @@ -421,6 +421,10 @@ updatePlayPauseButtonState() } + $(document).on("mousemove", function () { + showControlsAndResetTimer() + }) + $(document).ready(function() { // Initialize global selectors for static elements overlayContainer = $("#video-overlay-container");