Fix preview bar on mobile

Fixes #1947 and #1943
This commit is contained in:
Ajay
2024-01-14 14:03:05 -05:00
parent eede32aa7e
commit 3222afd8b4
4 changed files with 25 additions and 32 deletions

9
src/utils/mobileUtils.ts Normal file
View File

@@ -0,0 +1,9 @@
export function isMobileControlsOpen(): boolean {
const overlay = document.getElementById("player-control-overlay");
if (overlay) {
return !!overlay?.classList?.contains("fadein");
}
return false;
}