From 26cf9241c4b455b0e3178e07ea76abe6f1dd5290 Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Sat, 11 Oct 2025 00:58:22 +0300 Subject: [PATCH] Show icons (play/pause/next/prev) on touch devices as we dont use native browser --- .../video-js/src/components/controls/SeekIndicator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend-tools/video-js/src/components/controls/SeekIndicator.js b/frontend-tools/video-js/src/components/controls/SeekIndicator.js index 9a229816..ac6a7373 100644 --- a/frontend-tools/video-js/src/components/controls/SeekIndicator.js +++ b/frontend-tools/video-js/src/components/controls/SeekIndicator.js @@ -51,8 +51,8 @@ class SeekIndicator extends Component { */ show(direction, seconds = this.seekAmount) { // Skip showing icons on touch devices as native browser controls handle them - /* if (this.isTouchDevice) { - return; + /* if (this.isTouchDevice) { + return; } */ const el = this.el();