-
Notifications
You must be signed in to change notification settings - Fork 0
/
runs.html
27 lines (27 loc) · 952 Bytes
/
runs.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
<html>
<head>
<title>Agent-based Forum runs</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"></meta>
<script src="jquery.js"></script>
<script src="flot/jquery.flot.min.js"></script>
<script src="include.js"></script>
<script src="application.js"></script>
<script src="runs/experiments.js"></script>
<script type="text/javascript">
$('document').ready(function() {
setup_dropdown('#experiment_select', experiments, experiments.length - 1)
fetch_and_plot_experiment(experiments.length - 1);
});
</script>
</head>
<body>
<h1>Agent-based Forum Runs</h1>
<h4>by Wybo Wiersma</h4>
<p style="font-size: 0.8em;">
<a href="index.html">Back to model</a>
</p>
<select id="experiment_select" onchange="set_experiment(this)" style="margin-bottom: 0.5em;"></select>
<div id="content" style="width: 100%">
</div>
</body>
</html>