-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (126 loc) · 7.48 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cell Sketches</title>
<!-- Third party stuff -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<link rel="stylesheet" href="bower_components/angular-ui-grid/ui-grid.css" type="text/css">
<script src="bower_components/angular-ui-grid/ui-grid.js"></script>
<script src="bower_components/angular-ui-select/dist/select.js"></script>
<script src="bower_components/d3/d3.js"></script>
<script src="bower_components/file-saver/FileSaver.js"></script>
<script src="bower_components/three.js/three.js"></script>
<!-- Bootstrap + jquery -->
<script type="text/javascript" src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.css">
<!-- Select2 style is used for controls of the tables -->
<link rel="stylesheet" type="text/css" href="bower_components/select2/select2.css">
<!-- fontawesome is used for loading and download icons -->
<link rel="stylesheet" type="text/css" href="bower_components/font-awesome/css/font-awesome.css">
<!-- The app -->
<script src="app.module.js"></script>
<script src="app.js"></script>
<script src="components/loadedCells/loadedCells.module.js"></script>
<script src="components/loadedCells/loadedCells.directive.js"></script>
<script src="components/loadedCells/loadedCellsData.service.js"></script>
<script src="components/loadedCells/loadedCellsStatus.directive.js"></script>
<link rel="stylesheet" type="text/css" href="components/loadedCells/loadedCells.css">
<script src="components/neighborTable/neighborTable.module.js"></script>
<script src="components/neighborTable/neighborTable.directive.js"></script>
<script src="components/neighborTable/neighborTableData.service.js"></script>
<script src="components/neighborTable/neighborTableCell.directive.js"></script>
<script src="components/neighborTable/neighborTableHistogramCell.directive.js"></script>
<script src="components/neighborChart/neighborChart.directive.js"></script>
<link rel="stylesheet" type="text/css" href="components/neighborChart/neighborChart.css">
<script src="components/childrenTable/childrenTable.module.js"></script>
<script src="components/childrenTable/childrenTable.directive.js"></script>
<script src="components/childrenTable/childrenTableData.service.js"></script>
<script src="components/iplChart/iplChart.module.js"></script>
<script src="components/iplChart/iplChart.directive.js"></script>
<script src="components/iplChart/iplHistogram.directive.js"></script>
<script src="components/iplChart/iplChartData.service.js"></script>
<link rel="stylesheet" type="text/css" href="components/iplChart/iplHistogram.css"/>
<script src="components/geometry/geometry.module.js"></script>
<script src="components/geometry/geometry.directive.js"></script>
<script src="components/three/FlyControls.js"></script>
<script src="components/three/PointerLockControls.js"></script>
<!-- Shared modules. Order matters here. Module must be included before services. -->
<script src="components/io/io.module.js"></script>
<script src="components/io/ioCsvInput.directive.js"></script>
<script src="components/io/ioTextInput.directive.js"></script>
<script src="components/io/ioTextParser.service.js"></script>
<script src="components/volume/volume.module.js"></script>
<script src="components/volume/volumeOdata.service.js"></script>
<script src="components/volume/volumeBounds.service.js"></script>
<script src="components/volume/volumeCells.service.js"></script>
<script src="components/volume/volumeLayers.service.js"></script>
<script src="components/volume/volumeStructures.service.js"></script>
<script src="components/volume/volumeHelpers.service.js"></script>
<script src="components/vis/vis.module.js"></script>
<script src="components/vis/visUtils.service.js"></script>
<script src="components/vis/visTable.service.js"></script>
<script src="components/vis/visBarChart.service.js"></script>
<!-- Non-angular shared stuff. -->
<script src="components/utils/utils.js"></script>
<script src="components/utils/cell.js"></script>
<script src="components/utils/cellChild.js"></script>
<script src="components/utils/cellPartner.js"></script>
<script src="components/utils/point2d.js"></script>
<script src="components/utils/point3d.js"></script>
<script src="components/utils/debug.js"></script>
<script src="components/utils/location.js"></script>
<script src="components/utils/cellChildValue.js"></script>
<script src="components/utils/dataToText.js"></script>
<script src="components/utils/sort.js"></script>
<script src="components/utils/triangulate.js"></script>
<script src="components/utils/svgExport.js"></script>
<link rel="stylesheet" type="text/css" href="bower_components/angular-toastr/dist/angular-toastr.css"/>
<script type="text/javascript" src="bower_components/angular-toastr/dist/angular-toastr.tpls.js"></script>
<!-- Stylesheets. -->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="components/neighborTable/neighborTable.css">
<link rel="stylesheet" type="text/css" href="bower_components/angular-ui-select/dist/select.css">
</head>
<div class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" ui-sref="route1">Cell Sketches</a>
</div>
<ul class="nav navbar-nav">
<li ui-sref-active="active"><a ui-sref="route1">Cells</a></li>
<li ui-sref-active="active"><a ui-sref="neighborTable">Tables</a></li>
<li ui-sref-active="active"><a ui-sref="iplChart">IPL Chart</a></li>
<li ng-show="false" ui-sref-active="active"><a ui-sref="geometry">Geometry</a></li>
</ul>
<span style="position: absolute; right: 6px;" ng-show="!model.ui.exportingSvgs"
ng-click="onExportSvgsClicked(model.ui.exportingSvgs)"> <i style="font-size: 20px;"
class="icon-download"></i></span>
<span style="position: absolute; right: 6px" ng-show="model.ui.exportingSvgs"
ng-click="onExportSvgsClicked(model.ui.exportingSvgs)">
<i class="icon-remove"></i></span>
</div>
</div>
<body ng-app="app.csvUpload" ng-controller="ExampleController as ctrl">
<div ui-view></div>
</body>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-70520503-1', 'auto');
ga('send', 'pageview');
</script>
</html>