-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·26 lines (26 loc) · 1.02 KB
/
index.html
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
26
<!DOCTYPE html>
<html lang="de-DE">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>State Machine - Redneck Engineering</title>
<style>
pre { margin: 0; height: 22px; vertical-align: top; padding-top: 0; }
button { padding: 0; line-height: 1em; display: inline-block; }
body > div:hover { background: #ff8; }
</style>
<script src="src/StateMachine.js"></script>
<script src="src/Timers.js"></script>
<script src="src/GlobalTimers.js"></script>
<script src="test/run-parallel.js"></script>
<script src="test/run-next-invocation.js"></script>
<script src="test/run-wizzard-1.js"></script>
<script src="test/run-project-task.js"></script>
<script src="test/run-timers.js"></script>
<script src="test/main.js"></script>
</head>
<body>
<h1>StateMachine.js</h1>
<p><a href="https://github.com/redneck-f25/StateMachine.js" title="see it on Github">Github Repository</a></p>
</body>
</html>