-
Notifications
You must be signed in to change notification settings - Fork 21
/
display.html
37 lines (30 loc) · 1.04 KB
/
display.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
<!doctype html>
<html lang="en" ng-app="deconApp" ng-csp>
<head>
<meta charset="utf-8">
<title>D3 Deconstructor</title>
<link rel="stylesheet" type="text/css" href="display.css"/>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css"/>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="js/layout_fixer.js"></script>
<script src="dist/app.js"></script>
</head>
<body>
<span ng-controller="DataLoadingController">
<div id="loading-screen"
ng-if="visDataService.dataLoading.val">
<div style="display: table-cell; vertical-align: middle; text-align:center; font-size: 30pt;" >Loading...</div>
</div>
</span>
<div id="wrapper">
<div id="page-content">
<div ng-include src="'partials/dataTable.html'"></div>
</div>
</div>
<div id="sidebar">
<span ng-include src="'partials/mappingsList.html'"></span>
</div>
</body>
</html>