summaryrefslogtreecommitdiff
path: root/client-web/source/index.ts
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2023-01-21 11:52:46 +0100
committertpart <tpart120@proton.me>2023-01-21 11:52:46 +0100
commit01b9d4a647d515672f9e4260e1cc70fe1cda910f (patch)
treeecca56b6765b0f3579ae16780b154b24ee678221 /client-web/source/index.ts
parent0eebf707a1f8b5dc73c5b068c60e88271042357d (diff)
downloadkeks-meet-01b9d4a647d515672f9e4260e1cc70fe1cda910f.tar
keks-meet-01b9d4a647d515672f9e4260e1cc70fe1cda910f.tar.bz2
keks-meet-01b9d4a647d515672f9e4260e1cc70fe1cda910f.tar.zst
Fix logger container
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r--client-web/source/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts
index cc3492f..4772f94 100644
--- a/client-web/source/index.ts
+++ b/client-web/source/index.ts
@@ -50,6 +50,7 @@ window.onbeforeunload = ev => {
let r: Room;
export async function main() {
+ document.body.append(LOGGER_CONTAINER)
log("*", "starting up")
document.body.querySelectorAll("p").forEach(e => e.remove())
const room_secret = load_params().rsecret
@@ -70,7 +71,7 @@ export async function main() {
new BottomMenu(r).shown = true
new MenuBr().shown = true
}
- document.body.append(ROOM_CONTAINER, OVERLAYS, LOGGER_CONTAINER)
+ document.body.prepend(ROOM_CONTAINER, OVERLAYS)
if (globalThis.navigator.serviceWorker) init_serviceworker()
}