-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.13 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/gh/WXSD-Sales/embeddable-meetings-widget/docs/webex-widgets.css" />
<script src="https://cdn.jsdelivr.net/gh/WXSD-Sales/embeddable-meetings-widget/docs/bundle.js"></script>
<title>Video Support Widget (Lite)</title>
</head>
<body>
<div id="embeddable-meetings-widget"></div>
<script>
const token = GUEST_ACCESS_TOKEN;
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const sipAddress = urlParams.get("sipAddress");
webexMeetingsWidget({accessToken : token,
meetingDestination : sipAddress,
theme : "light",
draggable : true,
width : "800px",
height : "500px",
layout : "Grid",
inMeetingControls : ['mute-audio','leave-meeting'],
interstitialControls : ['join-meeting']});
</script>
</body>
</html>