Fix skip to highlight option on mobile

This commit is contained in:
Ajay 2022-05-19 19:28:26 -04:00
parent f68282decc
commit a39ec76340

View file

@ -172,10 +172,10 @@ export class SkipButtonControlBar {
const overlay = document.getElementById("player-control-overlay");
if (overlay && this.enabled) {
if (overlay?.classList?.contains("pointer-events-off")) {
this.hideButton();
} else {
if (overlay?.classList?.contains("fadein")) {
this.showButton();
} else {
this.hideButton();
}
}
}