forked from 8x8/jaas_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 751 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<script src="https://8x8.vc/libs/external_api.min.js"></script>
</head>
<body>
<div id="meet" class="margin:auto; text-align:center;"></div>
<script>
const domain = "8x8.vc";
const options = {
roomName:
"replace-with-your-vpaas-magic-cookie/RoomNameHere", // replace this with $your_tenant_name/$room_name
width: 1100,
height: 1100,
parentNode: document.querySelector("#meet"),
jwt:
"USERS_JWT_GOES_HERE",
};
const api = new JitsiMeetExternalAPI(domain, options);
// Example of a command to manipulate the jitsi video meeting, such as muting eceryone
// api.executeCommand('muteEveryone');
</script>
</body>
</html>