-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
39 lines (32 loc) · 942 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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>crowdmap</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body onload="main()">
<div id="nojs">
Turn javascript on.
</div>
<script>
document.body.removeChild(document.getElementById('nojs'))
</script>
<div id="errors" class="errors"></div>
<div id="cursor_info" class="cursor_info"></div>
</body>
<script src="js/es6-promise.min.js"></script>
<script src="js/helpers.js"></script>
<script src="js/key.js"></script>
<script src="js/rgbasm.js"></script>
<script src="js/dialog.js"></script>
<script src="js/config.js"></script>
<script src="js/map_editor.js"></script>
<script src="js/console.js"></script>
<script src="js/error.js"></script>
<script src="js/file.js"></script>
<script src="js/settings.js"></script>
<script src="js/task.js"></script>
<script src="js/pokecrystal.js"></script>
<script src="js/electron.js"></script>
</html>