diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-08 17:39:07 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-08 17:39:07 +0200 |
commit | 2ae6c32e19f364f1932ed918bebf0e708a4b70da (patch) | |
tree | 2a472a6f647ef408f0af86278c2806781d7b07ab /client-web/source/menu.ts | |
parent | 7497adaf1430daceac616c80c6271eb9f9dfd561 (diff) | |
download | keks-meet-2ae6c32e19f364f1932ed918bebf0e708a4b70da.tar keks-meet-2ae6c32e19f364f1932ed918bebf0e708a4b70da.tar.bz2 keks-meet-2ae6c32e19f364f1932ed918bebf0e708a4b70da.tar.zst |
new resource displays
Diffstat (limited to 'client-web/source/menu.ts')
-rw-r--r-- | client-web/source/menu.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/menu.ts b/client-web/source/menu.ts index c8dfd2b..395b7ff 100644 --- a/client-web/source/menu.ts +++ b/client-web/source/menu.ts @@ -37,7 +37,7 @@ export function info_br() { export let chat_control: (s?: boolean) => void; export function control_bar(room: Room, side_ui_container: HTMLElement): HTMLElement { - const leave = e("button", { class: "leave", onclick() { window.location.href = "/" } }, "Leave") + const leave = e("button", { class: "abort", onclick() { window.location.href = "/" } }, "Leave") const chat = side_ui(side_ui_container, room.chat.element, "Chat", room.chat) const prefs = side_ui(side_ui_container, ui_preferences(), "Settings") const rwatches = side_ui(side_ui_container, ui_room_watches(room.signaling), "Known Rooms") |