-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·39 lines (38 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no"
/>
<title>Parking Fury</title>
<link rel="stylesheet" href="assets/css/app.css" type="text/css" />
</head>
<body style="overflow: hidden">
<div id="content"></div>
<div id="orientation"></div>
<div id="loader">Loading ...</div>
<script type="text/javascript">
var gameName = "parking-fury-1.min.f.js";
//This all here is for cache busting;
function addScript(src, buster, callback) {
var s = document.createElement("script");
s.setAttribute("src", src + "?v=" + buster);
if (typeof callback === "function") {
s.onload = callback;
}
document.body.appendChild(s);
}
addScript("version.js", Date.now(), function () {
addScript(gameName, version, function () {
/**
* Here we create the game
*/
var game = new Game();
});
});
</script>
</body>
</html>