diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-25 13:53:26 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-25 13:53:26 +0100 |
commit | ac68f06d230fd589edb9b1d13af50836d554f23e (patch) | |
tree | 00cf3d10cec1e024cf53cf434f17d6b1fadcdaae /client-web/source/index.ts | |
parent | 7dc0c3ec6f982377f6c2e2e87c983c5d4b5870c6 (diff) | |
download | keks-meet-ac68f06d230fd589edb9b1d13af50836d554f23e.tar keks-meet-ac68f06d230fd589edb9b1d13af50836d554f23e.tar.bz2 keks-meet-ac68f06d230fd589edb9b1d13af50836d554f23e.tar.zst |
optimize accessability (screen readers 'n stuff)
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r-- | client-web/source/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index d2bd276..a853c58 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -6,7 +6,7 @@ /// <reference lib="dom" /> import { init_serviceworker } from "./sw/init.ts"; -import { ediv, OVERLAYS } from "./helper.ts"; +import { esection, OVERLAYS } from "./helper.ts"; import { setup_keybinds } from "./keybinds.ts"; import { log, LOGGER_CONTAINER } from "./logger.ts" import { BottomMenu, MenuBr } from "./menu.ts"; @@ -15,7 +15,7 @@ import { SignalingConnection } from "./protocol/mod.ts"; import { Room } from "./room.ts" export const VERSION = "0.1.12" -export const ROOM_CONTAINER = ediv({ class: "room" }) +export const ROOM_CONTAINER = esection({ class: "room", aria_label: "user list" }) export const RTC_CONFIG: RTCConfiguration = { iceServers: [ |