-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewer.html
25 lines (25 loc) · 962 Bytes
/
viewer.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>EventEditor Flowchart</title>
<link rel="stylesheet" href="viewer.css">
<link rel="stylesheet" href="lib/node_modules/d3-context-menu/dist/d3-context-menu.min.css">
</head>
<body>
<div style="position: absolute; color: white;">
<label><input type="checkbox" id="cbox-showparams"> Show parameters</label>
<label><input type="checkbox" id="cbox-shownames"> Show names</label>
<label><input type="checkbox" id="cbox-showmessages"> Show message text</label>
</div>
<svg id="graph">
<g/>
</svg>
<script src="lib/d3.v3.min.js"></script>
<script src="lib/graphlib.min.js"></script>
<script src="lib/dagre-d3.js"></script>
<script src="viewer.js?20230111"></script>
<script async src="https://static.zeldamods.org/anna-static.js?3"></script>
</body>
</html>