Compare commits

..

No commits in common. "3db3840a02e545768b2ec86df08911b8c6565ac0" and "7733b5262af308aa5283772ea589ca46d8d33121" have entirely different histories.

2 changed files with 0 additions and 6 deletions

View File

@ -4,7 +4,6 @@
<title>Gravity Simulator</title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./style.css" />
<link rel="icon" href="./favicon.ico" />
<script type="module">
import { Sim } from './simulator.js';
// Wait for document load

View File

@ -48,11 +48,6 @@ export class Sim {
const div = document.getElementById(this.divId);
this.div = div;
const url = new URL(window.location.href);
if (url.host === 'gravity.dev.laddhoffman.com') {
document.title += ' [Dev]';
}
this.options = new Options(this, simOptions);
this.display = new Display(this);
this.system = new System(this);