summaryrefslogtreecommitdiff
path: root/client-web/source/index.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-11 10:19:16 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-11 10:19:16 +0200
commitfb5faafbc91c7779a7cae88bfe16652be6220df2 (patch)
tree59f6d5b2e22705d2b0b3276a63681e638c60e258 /client-web/source/index.ts
parentd8059a5d8bc36fd473103c575925705b16f2398c (diff)
downloadkeks-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.ts2
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