zebra-report/web
Russell Ballestrini 3539171fd3
zebra-spaces: hoist musicMode + mic/cam deviceId declarations — fix TDZ blocking init
ReferenceError 'can't access lexical declaration musicMode before
initialization' halted the page script at line 692 (the localStorage
restore), which left every event handler unbound — including 'enter',
so users couldn't join a room at all.

Cause: the persistence patch placed the restore right after the handle
restore, but the let-declarations for those vars still lived 400+ lines
further down. `let` puts the binding in the temporal dead zone until
its declaration executes — reads from above throw.

Fix: declare `let musicMode, micDeviceId, cameraDeviceId` at the top
near the other prefs, drop them from the later `let` lines so the page
init doesn't re-shadow them.
2026-06-01 21:59:55 -04:00
..
blog phase 1: unfirehose reconstruction from session JSONL ingest 2026-05-27 13:51:14 -04:00
fonts phase 2: gap analysis — cat>> append + binary asset recovery 2026-05-27 13:54:19 -04:00
chat.html zebra-spaces: start remote screen tiles muted + add unmute button — fixes mobile autoplay 2026-06-01 20:02:03 -04:00
host-your-own.html zebra-spaces: start remote screen tiles muted + add unmute button — fixes mobile autoplay 2026-06-01 20:02:03 -04:00
how-it-works.html zebra-spaces: start remote screen tiles muted + add unmute button — fixes mobile autoplay 2026-06-01 20:02:03 -04:00
index.html web: bump mobile body padding from 1rem to 1.25rem so the right edge has visible breathing room 2026-05-31 14:13:25 -04:00
kernel.html web: bump mobile body padding from 1rem to 1.25rem so the right edge has visible breathing room 2026-05-31 14:13:25 -04:00
stamp.js web: stamp each zebra-report page with build date + md5/sha256 2026-05-28 17:50:12 -04:00
zebra-audio.html zebra-spaces: start remote screen tiles muted + add unmute button — fixes mobile autoplay 2026-06-01 20:02:03 -04:00
zebra-spaces.html zebra-spaces: hoist musicMode + mic/cam deviceId declarations — fix TDZ blocking init 2026-06-01 21:59:55 -04:00