-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtipball.html
52 lines (43 loc) · 2.47 KB
/
tipball.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
<html>
<head>
<title>TIP CsI Ball</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-tipball' rel="import" href="templates/detectors/detector-tipball/detector-tipball.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>
window.addEventListener('HTMLImportsLoaded', function(e) {
validate_browser();
setupRequests();
deployDetector('detector-tipball', 'TIP Ball');
if(dataStore.hostname=='tigress'){ document.getElementById('Logo').src = 'img/TIGRESS-logo.png';}
});
</script>
</body>
</html>