diff options
author | metamuffin <metamuffin@disroot.org> | 2024-04-01 00:50:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-04-01 00:50:46 +0200 |
commit | 5b3fb138a584649782ea92df262d0a78c5386f4d (patch) | |
tree | 4d74dd2ab406d6000e800ce64d16c2201dc038ba /client-web/source/room_watches.ts | |
parent | 78a02af787a4011a60f2ec964da9130c737478d4 (diff) | |
download | keks-meet-5b3fb138a584649782ea92df262d0a78c5386f4d.tar keks-meet-5b3fb138a584649782ea92df262d0a78c5386f4d.tar.bz2 keks-meet-5b3fb138a584649782ea92df262d0a78c5386f4d.tar.zst |
improve accessability here and there
Diffstat (limited to 'client-web/source/room_watches.ts')
-rw-r--r-- | client-web/source/room_watches.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client-web/source/room_watches.ts b/client-web/source/room_watches.ts index fd7d54b..f9d8c1b 100644 --- a/client-web/source/room_watches.ts +++ b/client-web/source/room_watches.ts @@ -41,7 +41,7 @@ export function ui_room_watches(conn: SignalingConnection): HTMLElement { }) let edit = false; - + const update_listing = () => { listing.innerHTML = "" for (let wi = 0; wi < watches.length; wi++) { @@ -96,7 +96,7 @@ export function ui_room_watches(conn: SignalingConnection): HTMLElement { button_finish.hidden = !e; edit = e; } - return e("div", { class: "room-watches" }, + return e("div", { class: "room-watches", role: "dialog", aria_label: "known rooms" }, e("h2", {}, "Known Rooms"), listing, button_edit = e("button", { |