68 lines
1.4 KiB
HTML
68 lines
1.4 KiB
HTML
<!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>Vex 4</title>
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-61405225-7"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() { dataLayer.push(arguments); }
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-61405225-7');
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="assets/css/app.css" type="text/css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="content"></div>
|
|
<div id="loader">Loading...</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
var gameName = "vex-4.min.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() {
|
|
var game = new Vex4.Game();
|
|
});
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|