mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-09 17:08:58 -05:00
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.
This commit is contained in:
parent
27a6ab0755
commit
e9431d8191
@ -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) {
|
||||
/* if (this.isTouchDevice) {
|
||||
return;
|
||||
}
|
||||
} */
|
||||
|
||||
const el = this.el();
|
||||
const iconEl = el.querySelector('.vjs-seek-indicator-icon');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user