forked from tao-yu/Alg-Trainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrols.html
More file actions
25 lines (21 loc) · 815 Bytes
/
Copy pathcontrols.html
File metadata and controls
25 lines (21 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>Algorithm trainer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body class="standalone-editor">
<h2> Control Config </h2>
<div id="controlsEditor"></div>
</body>
<script src="js/controls.js"></script>
<script src="js/keymaps.js"></script>
<script src="js/controlsEditor.js"></script>
<script>
initControlsEditor(document.getElementById("controlsEditor"));
</script>
</html>