diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-11 10:19:16 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-11 10:19:16 +0200 |
commit | fb5faafbc91c7779a7cae88bfe16652be6220df2 (patch) | |
tree | 59f6d5b2e22705d2b0b3276a63681e638c60e258 /client-web/source/index.ts | |
parent | d8059a5d8bc36fd473103c575925705b16f2398c (diff) | |
download | keks-meet-fb5faafbc91c7779a7cae88bfe16652be6220df2.tar keks-meet-fb5faafbc91c7779a7cae88bfe16652be6220df2.tar.bz2 keks-meet-fb5faafbc91c7779a7cae88bfe16652be6220df2.tar.zst |
keybinds
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r-- | client-web/source/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index f3c5adc..f9f7a5e 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -1,6 +1,7 @@ /// <reference lib="dom" /> import { ediv, OVERLAYS } from "./helper.ts"; +import { setup_keybinds } from "./keybinds.ts"; import { log, LOGGER_CONTAINER } from "./logger.ts" import { BottomMenu, MenuBr } from "./menu.ts"; import { load_params, PREFS } from "./preferences/mod.ts"; @@ -38,6 +39,7 @@ export async function main() { const conn = await (new SignalingConnection().connect(room_name)) const r = new Room(conn) + setup_keybinds(r) r.on_ready = () => { new BottomMenu(r).shown = true new MenuBr().shown = true |