-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (50 loc) · 1.76 KB
/
index.html
File metadata and controls
68 lines (50 loc) · 1.76 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Pari passu</title>
<link rel="icon" href="css/img/favicon.ico">
<link rel="stylesheet" href="css/page.css">
<link rel="stylesheet" href="css/paripassu.css">
<!-- <script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
-->
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.14.1/build/ol.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.14.1/css/ol.css">
<script src="js/utilities.js"></script>
<!-- <script src="js/vector.js"></script> -->
<!-- <script src="js/vendor/ol.js"></script> -->
<!-- <script src="js/vendor/jquery-ajax.js"></script> -->
<script src="js/vendor/simplex-noise.js"></script>
<script src="js/vendor/uuidv4.min.js"></script>
<!-- <script src="js/vendor/simple-peer-wrapper.js"></script> -->
<script src="js/vendor/vue.js"></script>
<script src="js/map.js" ></script>
<script src="js/paripassu.js" ></script>
<!-- <script src="js/v-eventlog.js" ></script> -->
<script src="js/v-widgets.js" ></script>
<script src="js/pokemon-app.js" ></script>
<!-- <script src="js/app.js" ></script> -->
</head>
<body>
<div id="app">
</div>
<script type="module">
if (ALLOW_FIREBASE) {
// Firebase setup
// Your web app's Firebase configuration
const firebaseConfig = {
};
try {
// Initialize Firebase
firebase.initializeApp(firebaseConfig)
firebase.isInitialized = true
io.room.connectFirebase(firebase)
console.log("Firebase loaded!!")
} catch(err) {
console.warn(err)
}
}
</script>
</body>
</html>