Spaces:
Sleeping
Sleeping
Commit ·
aa91cad
1
Parent(s): bb444b3
Fix: Ensure video overlay hides correctly when session starts
Browse files- frontend/script.js +1 -1
- frontend/style.css +1 -1
frontend/script.js
CHANGED
|
@@ -215,7 +215,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
| 215 |
video.srcObject = null;
|
| 216 |
if (meetingVideo) meetingVideo.srcObject = null;
|
| 217 |
}
|
| 218 |
-
videoOverlay.
|
| 219 |
|
| 220 |
meetingSetup?.classList.remove('hidden');
|
| 221 |
meetingActiveVideo?.classList.add('hidden');
|
|
|
|
| 215 |
video.srcObject = null;
|
| 216 |
if (meetingVideo) meetingVideo.srcObject = null;
|
| 217 |
}
|
| 218 |
+
videoOverlay.classList.remove('hidden');
|
| 219 |
|
| 220 |
meetingSetup?.classList.remove('hidden');
|
| 221 |
meetingActiveVideo?.classList.add('hidden');
|
frontend/style.css
CHANGED
|
@@ -352,7 +352,7 @@ body {
|
|
| 352 |
position: absolute;
|
| 353 |
inset: 0;
|
| 354 |
z-index: 20;
|
| 355 |
-
display: flex
|
| 356 |
flex-direction: column;
|
| 357 |
align-items: center;
|
| 358 |
justify-content: center;
|
|
|
|
| 352 |
position: absolute;
|
| 353 |
inset: 0;
|
| 354 |
z-index: 20;
|
| 355 |
+
display: flex;
|
| 356 |
flex-direction: column;
|
| 357 |
align-items: center;
|
| 358 |
justify-content: center;
|