forked from webex/EmbeddedAppKitchenSink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparticipant.html
32 lines (30 loc) · 962 Bytes
/
participant.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>PARTICIPANT - Embedded Apps Kitchen Sink</title>
<!-- Import the app's stylesheet -->
<link rel="stylesheet" href="./style.css" />
<script src="https://binaries.webex.com/static-content-pipeline/webex-embedded-app/v1/webex-embedded-app-sdk.js" defer></script>
<!-- Import the app's javascript file -->
<script src="./participant.js" defer></script>
</head>
<body>
<div>
<h2>Participant View</h2>
<div>
Well, hello there participant!
</div>
<h4>Methods</h4>
<button onclick="handleGetUser()">getUser()</button>
<button onclick="handleGetMeeting()">getMeeting()</button>
<button onclick="handleGetSpace()">getSpace()</button>
<button onclick="handleDisplayAppInfo()">Log Application Object</button>
</div>
<h4>Recent Event Logs</h4>
<div>
<ul id="console" />
</div>
</body>
</html>