aboutsummaryrefslogtreecommitdiff
path: root/client-web/source/user
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-04-01 15:03:08 +0200
committermetamuffin <metamuffin@disroot.org>2024-04-01 15:03:08 +0200
commit5cd88136c70dc3aae12778180b7f1c2c568a00fc (patch)
tree564de5c986aa13e0f3465ff473e3e177daf177ed /client-web/source/user
parent1d6c5b55b7abc287a7d0493858640d2c8c7da2c2 (diff)
downloadkeks-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/user')
-rw-r--r--client-web/source/user/mod.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/user/mod.ts b/client-web/source/user/mod.ts
index 7c6c212..37eba73 100644
--- a/client-web/source/user/mod.ts
+++ b/client-web/source/user/mod.ts
@@ -17,7 +17,7 @@ export class User {
name_el = e("span", {}, this.display_name)
status_el = e("span", { class: ["connection-status", "status-neutral"] }, "")
stats_el = e("pre", {})
- el = e("div", { class: "user", role: "group", aria_label: `unknown user` })
+ el = e("div", { class: "user", role: "group", aria_label: `unknown user`, aria_live: "polite" })
constructor(public room: Room, public id: number) {
const info_el = e("div", { class: "info" })