-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 819 Bytes
/
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
27
28
29
30
31
32
33
34
<html>
<link href="app.css" type="text/css" rel="stylesheet"/>
<div id="testCode">
<textarea>x => {
return x.reduce(
(prev, current) => { return prev + current; }
);
}</textarea>
</div>
<div id="testParameters">
<textarea>"inputType": [{"type": "number"}]
"distributionType": "linear"
"rangeBottom": -15
"rangeTop": 15
"testIterations": 1000</textarea>
</div>
<div id="results">
<canvas id="resultsChart"></canvas>
</div>
<div id="errors">
<h1></h1>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.4/Chart.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="spectrum.js"></script>
<script src="script.js"></script>
</html>