-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (37 loc) · 1.69 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; frame-src 'self'; script-src 'self' 'unsafe-eval' https://unpkg.com/@daily-co/daily-js https://*.daily.co https://cdn.jsdelivr.net/npm/@mediapipe/; connect-src https://*.daily.co https://*.pluot.blue https://cdn.jsdelivr.net/npm/@mediapipe/ wss:; worker-src 'self' blob:; style-src-elem 'self' https://fonts.googleapis.com/css2; font-src 'self' https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2 https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2 https://*.gstatic.com"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link href="./styles.css" rel="stylesheet" />
<title>Daily Call Overlay</title>
</head>
<body>
<div id="wrapper">
<div id="callControls" class="clickable" draggable="true">
<div id="controller">
<div id="dots"></div>
<div id="line"></div>
</div>
<button id="toggleCam"></button>
<button id="toggleMic"></button>
<button id="clipboard" class="invite"></button>
<span id="clipboardTooltip">Room URL copied</span>
<button id="toggleBlur" class="blur-off">BLUR</button>
<button id="leave">Leave Call</button>
</div>
<div id="tiles"></div>
</div>
<!-- You can also require other files to run in this process -->
<script src="https://unpkg.com/@daily-co/daily-js"></script>
<script src="./renderer/call/daily.js" type="module"></script>
</body>
</html>