mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-06 21:24:06 -04:00
52 lines
No EOL
1.3 KiB
HTML
52 lines
No EOL
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Automata</title>
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/vis-network/styles/vis-network.min.css">
|
|
|
|
|
|
<link href="editor.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="centered" id="center_text">
|
|
<p style="font-size:16px">
|
|
Loading…
|
|
</p>
|
|
<div class="lds-dual-ring"></div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="app" style="display:none" id="app">
|
|
<section class="canvasPane" id="canvasPane">
|
|
<div id="graph" class="graph"></div>
|
|
|
|
<button id="togglePhysics">Toggle Physics</button>
|
|
<button id="resetLayout">Reset Layout</button>
|
|
</section>
|
|
|
|
<div class="hSplit" id="hSplit" title="Drag to resize canvas height"></div>
|
|
|
|
<section class="bottomPane" id="bottomPane">
|
|
|
|
<main class="editorPane">
|
|
<div id="editor"></div>
|
|
</main>
|
|
<div class="vSplit" id="vSplit" title="Drag to resize terminal/editor width"></div>
|
|
|
|
<div class="pane terminalPane">
|
|
<pre id="terminal" class="terminal"></pre>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
|
|
<script type="module" src="index.js"></script>
|
|
</body>
|
|
|
|
</html> |