From e9431d8191456738c6e9f580ed841a1431a64c7b Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Sat, 11 Oct 2025 00:44:42 +0300 Subject: [PATCH] Disable touch device check in SeekIndicator show method Commented out the early return for touch devices in the SeekIndicator's show method, allowing the indicator to display regardless of device type. This may be for testing or to support custom controls on touch devices. --- .../video-js/src/components/controls/SeekIndicator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend-tools/video-js/src/components/controls/SeekIndicator.js b/frontend-tools/video-js/src/components/controls/SeekIndicator.js index 6067426f..9a229816 100644 --- a/frontend-tools/video-js/src/components/controls/SeekIndicator.js +++ b/frontend-tools/video-js/src/components/controls/SeekIndicator.js @@ -51,9 +51,9 @@ 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(); const iconEl = el.querySelector('.vjs-seek-indicator-icon');