-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmeet.html
More file actions
56 lines (51 loc) · 1.39 KB
/
meet.html
File metadata and controls
56 lines (51 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Ruby Monstas Video Call</title>
</head>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
}
</style>
<body>
<!--
<div
id="jitsi"
width="100%"
height="100%"
scrolling="no"
marginheight="0"
marginwidth="0"
style="width: 100%; height: 100%"
></div>
<script src="https://meet.coredump.ch/external_api.js"></script>
<script type="text/javascript">
const room = document.location.search.substring(1) || "rubymonstas";
const domain = "meet.coredump.ch";
const options = {
roomName: room,
parentNode: document.querySelector("#jitsi"),
interfaceConfigOverwrite: {
SHOW_BRAND_WATERMARK: false,
SHOW_JITSI_WATERMARK: false,
DEFAULT_LOGO_URL: "https://rubymonstas.ch/assets/full-logo.png",
BRAND_WATERMARK_LINK: "https://rubymonstas.ch/assets/full-logo.png",
JITSI_WATERMARK_LINK: "https://rubymonstas.ch",
SHOW_POWERED_BY: false,
},
};
const api = new JitsiMeetExternalAPI(domain, options);
</script>
-->
<script>
window.location.replace(
"https://call.element.io/room/#/rubymonstas?roomId=!eTHkwzjluMBEkVIzXm:call.ems.host&password=_nRfa8wAQq20wy4CcGhRag"
);
</script>
</body>
</html>