This commit is contained in:
Green! 2022-05-17 14:43:57 -04:00 committed by GitHub
parent 2d17fa39a7
commit a5745d793e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 57 additions and 0 deletions

18
static/hl/1.js Normal file
View file

@ -0,0 +1,18 @@
function parseHashBangArgs(aURL) {
aURL = aURL || window.location.href;
var vars = {};
var hashes = aURL.slice(aURL.indexOf('#') + 1).split('&');
for(var i = 0; i < hashes.length; i++) {
var hash = hashes[i].split('=');
if(hash.length > 1) {
vars[hash[0]] = hash[1];
} else {
vars[hash[0]] = null;
}
}
return vars;
}

7
static/hl/404.html Normal file
View file

@ -0,0 +1,7 @@
<html>
<head>
Please wait, redirecting...
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta http-equiv="refresh" content="0.0;url=https://icrazyblaze.github.io/Xash3D-Emscripten">
</head>
</html>

15
static/hl/browserfs.min.js vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

17
static/hl/client.js Normal file

File diff suppressed because one or more lines are too long

BIN
static/hl/client.js.gz Normal file

Binary file not shown.