mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-29 11:03:48 +01:00
merge master
This commit is contained in:
commit
652428b164
7406
dist/engine.bundle.js
vendored
7406
dist/engine.bundle.js
vendored
File diff suppressed because one or more lines are too long
491
dist/engineStyle.bundle.js
vendored
491
dist/engineStyle.bundle.js
vendored
File diff suppressed because one or more lines are too long
9741
dist/vendor.bundle.js
vendored
9741
dist/vendor.bundle.js
vendored
File diff suppressed because one or more lines are too long
26
index.html
26
index.html
@ -1,18 +1,18 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8"/>
|
||||||
<title>Bitburner - development</title>
|
<title>Bitburner</title>
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="dist/apple-touch-icon.png" />
|
<link rel="apple-touch-icon" sizes="180x180" href="dist/apple-touch-icon.png"/>
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="dist/favicon-32x32.png" />
|
<link rel="icon" type="image/png" sizes="32x32" href="dist/favicon-32x32.png"/>
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="dist/favicon-16x16.png" />
|
<link rel="icon" type="image/png" sizes="16x16" href="dist/favicon-16x16.png"/>
|
||||||
<link rel="manifest" href="dist/site.webmanifest" />
|
<link rel="manifest" href="dist/site.webmanifest"/>
|
||||||
<link rel="mask-icon" href="dist/safari-pinned-tab.svg" color="#000000" />
|
<link rel="mask-icon" href="dist/safari-pinned-tab.svg" color="#000000"/>
|
||||||
<meta name="apple-mobile-web-app-title" content="Bitburner" />
|
<meta name="apple-mobile-web-app-title" content="Bitburner"/>
|
||||||
<meta name="application-name" content="Bitburner" />
|
<meta name="application-name" content="Bitburner"/>
|
||||||
<meta name="msapplication-TileColor" content="#000000" />
|
<meta name="msapplication-TileColor" content="#000000"/>
|
||||||
<meta name="msapplication-config" content="dist/browserconfig.xml" />
|
<meta name="msapplication-config" content="dist/browserconfig.xml"/>
|
||||||
<meta name="theme-color" content="#ffffff" />
|
<meta name="theme-color" content="#ffffff"/>
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
@ -63,7 +63,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="file" id="import-game-file-selector" name="file" />
|
<input type="file" id="import-game-file-selector" name="file"/>
|
||||||
|
|
||||||
<!-- Loader (Loading screen) -->
|
<!-- Loader (Loading screen) -->
|
||||||
<div id="loader" class="loaderoverlay">
|
<div id="loader" class="loaderoverlay">
|
||||||
|
@ -4,9 +4,8 @@ function isNumber(str: string): boolean {
|
|||||||
if (typeof str != "string") {
|
if (typeof str != "string") {
|
||||||
return false;
|
return false;
|
||||||
} // Only process strings
|
} // Only process strings
|
||||||
return !isNaN(parseFloat(str));
|
return !isNaN(str as unknown as number) && !isNaN(parseFloat(str));
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ParseCommands(commands: string): string[] {
|
export function ParseCommands(commands: string): string[] {
|
||||||
// Sanitize input
|
// Sanitize input
|
||||||
commands = commands.trim();
|
commands = commands.trim();
|
||||||
|
Loading…
Reference in New Issue
Block a user