diff options
author | tpart <tpart120@proton.me> | 2023-09-23 23:30:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-23 23:31:44 +0200 |
commit | b7555369e085f16cefc2a8f30a216c5159890cb8 (patch) | |
tree | 44c2869d76657795309cf4aca70c169216035098 /client-web/source | |
parent | fb466123ac3fe07c59f092b3e3635843e7d0598d (diff) | |
download | keks-meet-b7555369e085f16cefc2a8f30a216c5159890cb8.tar keks-meet-b7555369e085f16cefc2a8f30a216c5159890cb8.tar.bz2 keks-meet-b7555369e085f16cefc2a8f30a216c5159890cb8.tar.zst |
Add icons
Signed-off-by: metamuffin <metamuffin@disroot.org>
Diffstat (limited to 'client-web/source')
-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 57ee26c..ddc49bc 100644 --- a/client-web/source/menu.ts +++ b/client-web/source/menu.ts @@ -42,7 +42,7 @@ export function control_bar(room: Room, side_ui_container: HTMLElement): HTMLEle const prefs = side_ui(side_ui_container, ui_preferences(), "settings", "Settings") const rwatches = side_ui(side_ui_container, ui_room_watches(room.signaling), "room", "Known Rooms") const local_controls = [ //ediv({ class: "local-controls", aria_label: "local resources" }, - e("button", { icon: "microphon", onclick: () => room.local_user.await_add_resource(create_mic_res()) }, "Microphone"), + e("button", { icon: "microphone", onclick: () => room.local_user.await_add_resource(create_mic_res()) }, "Microphone"), e("button", { icon: "camera", onclick: () => room.local_user.await_add_resource(create_camera_res()) }, "Camera"), e("button", { icon: "screen", onclick: () => room.local_user.await_add_resource(create_screencast_res()) }, "Screen"), e("button", { icon: "file", onclick: () => room.local_user.await_add_resource(create_file_res()) }, "File"), |