-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.html
34 lines (30 loc) · 964 Bytes
/
local.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
27
28
29
30
31
32
33
34
<html>
<head>
<title>Timeline</title>
<meta charset="utf-8">
<script type="text/javascript" src="bundle.js"></script>
<link href="https://unpkg.com/vis-timeline@latest/styles/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Minutes</h1>
<h2>Resources:</h2>
<div id="resources"></div>
<h2>Workflows:</h2>
<div id="workflows"></div>
<script src="data-example-minutes.js"></script>
<script type="text/javascript">
workflowTimeline("resources", resourceData, tasks, new Date(new Date().getFullYear(), 0, 1));
workflowTimeline("workflows", simulationData, tasks);
</script>
<h1>Units</h1>
<h2>Resources:</h2>
<div id="uresources"></div>
<h2>Workflows:</h2>
<div id="uworkflows"></div>
<script src="data-example-units.js"></script>
<script type="text/javascript">
workflowUnitTimeline("uresources", resourceData, tasks);
workflowUnitTimeline("uworkflows", simulationData, tasks);
</script>
</body>
</html>