mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
ea03889082
Prevents the renderer process staying up when the user scripts are waiting for an unresolved promise.
31 lines
507 B
HTML
31 lines
507 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Bitburner</title>
|
|
<link rel="stylesheet" href="main.css" />
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: #0c0;
|
|
}
|
|
|
|
div {
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Exiting ...</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|