-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
81 lines (74 loc) · 1.96 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Table Summarizer</title>
<link rel="stylesheet" href="css/site.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="container">
<header>
<h1>Table Summarizer</h1>
</header>
<div id="main">
<table>
<thead>
<tr>
<th>COL 1</th>
<th>COL 2</th>
<th>COL 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>ROW 1</td>
<td class="duration" data-minute="30.2">30.2</td>
<td class="other_duration"><span data-minute="45">45</span></td>
</tr>
<tr>
<td>ROW 2</td>
<td class="duration" data-minute="0">0</td>
<td class="other_duration"><span data-minute="15.33">15.33</td>
</tr>
<tr>
<td>ROW 3</td>
<td class="duration" data-minute=""></td>
<td class="other_duration"><span data-minute="120">120</span></td>
</tr>
</tbody>
<tbody>
<tr>
<td>ROW 1</td>
<td class="duration" data-minute="30">30</td>
<td class="other_duration"><span data-minute="45">45</span></td>
</tr>
<tr>
<td>ROW 2</td>
<td class="duration" data-minute="0">0</td>
<td class="other_duration"><span data-minute="15">15</td>
</tr>
</tbody>
</table>
</div>
<footer>
</footer>
</div>
<script src="js/libs/jquery.js"></script>
<script src="js/jquery.table-summarizer.js"></script>
<script>
$( function() {
$( '#main' ).tableSummarizer( {
debug: true,
summarizableCss: ['duration', 'other_duration'],
summaryLabel: "sub-total",
onReady: function() {
console.log("READY");
}
} );
} );
</script>
</body>
</html>