-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·23 lines (22 loc) · 912 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>live-cam-bot</title>
</head>
<body>
<h1>live-cam-bot</h1>
<p>This page is only shown when starting the app in debug mode.</p>
<ul>
<li>Node.js: <script>document.write(process.versions.node)</script></li>
<li>Chromium: <script>document.write(process.versions.chrome)</script></li>
<li>Electron: <script>document.write(process.versions.electron)</script></li>
</ul>
<p>See README on what this live-cam-bot does.</p>
<audio id="remoteAudio" autoplay></audio>
<!-- Include the JS SDK since its used in the renderer (not the node.js SDK)
By including it inline rather than with require, debugging is easier -->
<script type="text/javascript" src="./node_modules/circuit-sdk/dist/circuit.js"></script>
<script type="text/javascript" src="./renderer.js"></script>
</body>
</html>