v6.7.7
This commit is contained in:
parent
2d17fa39a7
commit
a5745d793e
6 changed files with 57 additions and 0 deletions
18
static/hl/1.js
Normal file
18
static/hl/1.js
Normal 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
7
static/hl/404.html
Normal 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
15
static/hl/browserfs.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
static/hl/browserfs.min.js.gz
Normal file
BIN
static/hl/browserfs.min.js.gz
Normal file
Binary file not shown.
17
static/hl/client.js
Normal file
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
BIN
static/hl/client.js.gz
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue