-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlabr3.html
53 lines (44 loc) · 2.57 KB
/
labr3.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
<html>
<head>
<title>LaBr3</title>
<!--libraries-->
<script src='scripts/HTMLImports.min.js' type="text/javascript"></script>
<script src='scripts/mustache.js' type="text/javascript"></script>
<script src="scripts/jquery1-11-3.min.js" type="text/javascript"></script>
<script src="scripts/quickdraw.js" type="text/javascript"></script>
<!--helpers-->
<script src='scripts/helpers.js' type="text/javascript"></script>
<script src='scripts/dataStore.js' type="text/javascript"></script>
<script src='scripts/heartbeat.js' type="text/javascript"></script>
<script src='scripts/colorScales.js' type="text/javascript"></script>
<script src="templates/detectors/detector-helpers.js" type="text/javascript"></script>
<!--style-->
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="scripts/bootstrap3-3-5.min.js" type="text/javascript"></script>
<!--html imports-->
<link id='brand-header' rel="import" href="templates/brand-header/brand-header.html">
<link id='brand-footer' rel="import" href="templates/brand-footer/brand-footer.html">
<link id='nav-bar' rel="import" href="templates/nav-bar/nav-bar.html">
<link id='run-status' rel="import" href="templates/run-status/run-status.html">
<link id='detector-structure' rel="import" href="templates/detectors/detector-structure.html">
<link id='detector-view' rel="import" href="templates/detectors/detector-view.html">
<link id='detector-labr3' rel="import" href="templates/detectors/detector-labr3/detector-labr3.html">
<link id='adc-sidebar' rel="import" href="templates/detectors/adc-sidebar/adc-sidebar.html">
<link id='hv-sidebar' rel="import" href="templates/detectors/hv-sidebar/hv-sidebar.html">
</head>
<body>
<div id='header'></div>
<div class='section-wrapper' id='detector-wrap'></div>
<div id='footer'></div>
<script>
//are we doing energy or time? Energy by default.
dataStore.detector.channelType = getParameterByName('channel') || 'energy';
window.addEventListener('HTMLImportsLoaded', function(e) {
validate_browser();
setupRequests();
deployDetector('detector-labr3', dataStore.detector.channelType == 'energy' ? 'LaBr3 (Energy)' : 'LaBr3 (TAC)');
});
</script>
</body>
</html>