-
Notifications
You must be signed in to change notification settings - Fork 0
/
inverseCalculator.html
33 lines (33 loc) · 1.14 KB
/
inverseCalculator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript" data-main="js/main.js" src="js/lib/require-2.3.5.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/calculator.css">
<title>PointJs</title>
</head>
<body>
<table class="table table-condensed table-hover table-striped">
<thead><tr>
<th>Event</th><th>Points</th><th>Performance</th>
</tr></thead>
<tbody data-bind="foreach: eventCalculators.calculatorArray">
<tr>
<td data-bind="text: eventName"></td>
<td>
<input type="range"
data-bind="
value: points,
attr: { min: pointsMin, max: pointsMax },
valueUpdate: 'input'"
class="slider"
>
<output data-bind="value: points"></output>
</td>
<td data-bind="text: performanceOutputFormatted"></td>
</tr>
</tbody>
</table>
</body>
</html>