-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (28 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<!-- Boostrap css for buttons + table and animations for cells -->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="css/pivottable.css"/>
<!-- load React library -->
<script src="src/react.js"></script>
<script src="src/JSXTransformer.js"></script>
<!-- function to open a websocket-->
<script type="text/jsx" src="src/websocket.js"></script>
<!-- hard coded data in JSON format-->
<script type="text/jsx" src="src/dataForTest.js"></script>
<!-- Buttons on the top of the app -->
<script type="text/jsx" src="src/RequestButtons.js"></script>
<!-- rendering table algorithm, mainly pure JS -->
<script type="text/jsx" src="src/table_algo.js"></script>
<!-- rendering React table -->
<script type="text/jsx" src="src/table_reactjs.js"></script>
</head>
<body>
<div style="margin: 10px;">
<h3>Pivot table</h3>
<div id="requestButtons" style="margin-bottom: 15px;"></div>
<div id="pivotTable"></div>
</div>
</body>
</html>