1
0

Loop and other fixes
All checks were successful
Test / test (push) Successful in 9m37s

This commit is contained in:
Aiden
2026-06-10 16:17:08 +10:00
parent 857c9ac980
commit 707cad3719
13 changed files with 342 additions and 51 deletions

View File

@@ -82,9 +82,12 @@ export function create2DControlPanel(): HTMLDivElement {
nav.appendChild(forwardBtn);
const muteBtn = createControlButton('vrwp-mute', 'Toggle mute', 'volume-2');
const loopBtn = createControlButton('vrwp-loop', 'Loop video', 'repeat');
loopBtn.setAttribute('aria-pressed', 'false');
controls.appendChild(fullscreenBtn);
controls.appendChild(nav);
controls.appendChild(loopBtn);
controls.appendChild(muteBtn);
panel.appendChild(status);