diff options
author | metamuffin <metamuffin@disroot.org> | 2024-04-01 15:03:08 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-04-01 15:03:08 +0200 |
commit | 5cd88136c70dc3aae12778180b7f1c2c568a00fc (patch) | |
tree | 564de5c986aa13e0f3465ff473e3e177daf177ed /client-web/source/room.ts | |
parent | 1d6c5b55b7abc287a7d0493858640d2c8c7da2c2 (diff) | |
download | keks-meet-5cd88136c70dc3aae12778180b7f1c2c568a00fc.tar keks-meet-5cd88136c70dc3aae12778180b7f1c2c568a00fc.tar.bz2 keks-meet-5cd88136c70dc3aae12778180b7f1c2c568a00fc.tar.zst |
more live regions and mute indicator
Diffstat (limited to 'client-web/source/room.ts')
-rw-r--r-- | client-web/source/room.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/room.ts b/client-web/source/room.ts index 53b8740..2192bb9 100644 --- a/client-web/source/room.ts +++ b/client-web/source/room.ts @@ -22,7 +22,7 @@ export class Room { public destroy: () => void constructor(public signaling: SignalingConnection, public chat: Chat, public rtc_config: RTCConfiguration) { - this.element = e("div", { class: "room", aria_label: "user list" }) + this.element = e("div", { class: "room", aria_label: "user list", aria_live: "polite" }) const h1 = ([a, b]: [number, RelayMessage]) => this.relay_handler(a, b); const h2 = (p: ClientboundPacket) => this.control_handler(p) signaling.relay_handler.add_listener(h1) |