diff options
author | metamuffin <metamuffin@disroot.org> | 2023-04-05 09:08:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-04-05 09:08:46 +0200 |
commit | bfeb96146309e1f92e2d3f040a0ee874131ed90c (patch) | |
tree | 46c842fbb1c3dccf0718fb6052545a7dd6ac7c0d /client-web/source/index.ts | |
parent | 99d1ab55dfb1714d8f574060e618dc93c94f245c (diff) | |
download | keks-meet-bfeb96146309e1f92e2d3f040a0ee874131ed90c.tar keks-meet-bfeb96146309e1f92e2d3f040a0ee874131ed90c.tar.bz2 keks-meet-bfeb96146309e1f92e2d3f040a0ee874131ed90c.tar.zst |
fix loading
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r-- | client-web/source/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index 3610ead..74f8963 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -59,7 +59,7 @@ export async function main() { const config: ClientConfig = await config_res.json() log("*", "config loaded. starting") - document.body.querySelectorAll("p").forEach(e => e.remove()) + document.body.querySelectorAll(".loading").forEach(e => e.remove()) const room_secret = load_params().rsecret if (!globalThis.RTCPeerConnection) return log({ scope: "webrtc", error: true }, "WebRTC not supported.") |