-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalytics_template.html
79 lines (73 loc) · 1.66 KB
/
analytics_template.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.collapsible {
background-color: #777;
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<button type="button" class="collapsible">Duplication status</button>
<div class="content">
SEPARATOR
</div>
<button type="button" class="collapsible">Version status</button>
<div class="content">
SEPARATOR
</div>
<button type="button" class="collapsible">Version status by source</button>
<div class="content">
SEPARATOR
</div>
<button type="button" class="collapsible">Usage status</button>
<div class="content">
SEPARATOR
</div>
<button type="button" class="collapsible">List of chants that have the same title, version and usage</button>
<div class="content">
SEPARATOR
</div>
<button type="button" class="collapsible">List of chants that have the same GABC</button>
<div class="content">
SEPARATOR
</div>
<button type="button" class="collapsible">Tags status</button>
<div class="content">
SEPARATOR
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>