-
Notifications
You must be signed in to change notification settings - Fork 59
/
relvalsExceptions.html
47 lines (37 loc) · 1.34 KB
/
relvalsExceptions.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>CMSSW IBs Relvals Exceptions </title>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<script type='text/javascript' src="js/jquery-2.1.1.min.js"></script>
<script type='text/javascript' src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script type='text/javascript' src="js/renderRelvalsExceptions.js"></script>
<div class="container">
<div class="row">
<div class="col-md-12" id="header"></div>
</div>
<div class="row">
<div class="col-md-12" id="results"></div>
</div>
</div>
<script>
paintMenu = function ( structure ){
menuBar = getMenuBar( structure )
$("#results").append( menuBar )
}
// Reads the file structre.json to know how to paint the menu and how to paint the tabs.
start_load = function( structure ){
paintMenu( structure )
tabs = getTabs( structure )
$("#results").append( tabs )
tabs_content = getTabPanes( structure )
$("#results").append( tabs_content )
fillTabPanes( structure )
}
$.getJSON( "data/structure.json", start_load )
</script>
</body>
</html>