-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (25 loc) · 900 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
24
25
26
27
28
29
30
31
32
33
34
35
<head>
<script>var USERDATA, MASTER_KEY, VERSION, fs, cw, userPeer, sodium, originalDoc;</script>
<script src="scripts/dependencies/buffer.js"></script>
<script src="scripts/dependencies/peerjs.min.js"></script>
<script src="scripts/lib.js"></script>
<script src="scripts/CryptoWrapper.js"></script>
<script src="scripts/filesystem.js"></script>
<script src="scripts/Version.js"></script>
<script src="scripts/WrappedPeer.js"></script>
<!-- Scripts and code go here -->
<script>
window.onPeerLoad = () => {
userPeer = new WrappedPeer();
//put your init function here
}
</script>
<!-- end scripts and code-->
<script src="scripts/init.js"></script>
<script src="scripts/integrity.js"></script>
<script src="scripts/dependencies/sodium.js"></script>
<!-- <script src="scripts/dependencies/eruda.js"></script> -->
</head>
<body>
body
</body