-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·48 lines (41 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>PartyTube</title>
<meta name="description" content="PartyTube">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="app/build/styles/main.css">
</head>
<body>
<div class="site-wrapper" id="video-container">
<div id="main"></div>
<div id="join-container">
<h3>Join and add</h3>
<div id="qrcode"></div>
<p id='join-link'> (insert link here) </p>
</div>
</div>
<div id="bunnies-container">
</div>
<script src="vendor/eventemitter2.js"></script>
<script src="vendor/jquery-2.1.4.min.js"></script>
<script src="scripts/jquery.tubular.1.0.js"></script>
<script src="vendor/lodash.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://www.parsecdn.com/js/parse-latest.js"></script>
<!--<script src="scripts/qrcode.min.js"></script>-->
<script src="scripts/qrcode.js"></script>
<script src="scripts/jquery.qrcode.js"></script>
<script src="vendor/browser.min.js"></script>
<script src="vendor/react/react.js"></script>
<script src="vendor/react/react-dom.js"></script>
<!-- React components -->
<script src="app/build/src/bundle.js"></script>
<!-- Main React entry point -->
<script src="scripts/readme.js"></script>
<script type="text/javascript" src="scripts/pixi.min.js"></script>
<script type="text/javascript" src="scripts/Math2.js"></script>
<script type="text/javascript" src="scripts/bunnyBenchMark.js"></script>
</body>
</html>