-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
106 lines (88 loc) · 2.9 KB
/
index.js
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
/**
* Theme - Stylesheet Generator for Reddit
* Authors: Sriram Krishnan, James Kerrane, Devonnae Williams
* Created: 7/20/2017
* Team: Owl 24
* Part of the Chingu Cohort
*/
//Legere
// When the user clicks the button, open the modal
function legereOnClick() {
document.getElementById('legereModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function legereClose() {
document.getElementById('legereModal').style.display = "none";
}
//Eddited
// When the user clicks the button, open the modal
function edditedOnClick() {
document.getElementById('edditedModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function edditedClose() {
document.getElementById('edditedModal').style.display = "none";
}
//FBRT
// When the user clicks the button, open the modal
function fbrtOnClick() {
document.getElementById('fbrtModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function fbrtClose() {
document.getElementById('fbrtModal').style.display = "none";
}
//Sequent
// When the user clicks the button, open the modal
function sequentOnClick() {
document.getElementById('sequentModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function sequentClose() {
document.getElementById('sequentModal').style.display = "none";
}
//Apicem
// When the user clicks the button, open the modal
function apicemOnClick() {
document.getElementById('apicemModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function apicemClose() {
document.getElementById('apicemModal').style.display = "none";
}
//Focus
// When the user clicks the button, open the modal
function focusOnClick() {
document.getElementById('focusModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function focusClose() {
document.getElementById('focusModal').style.display = "none";
}
//ClearShift
// When the user clicks the button, open the modal
function clearShiftOnClick() {
document.getElementById('clearShiftModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function clearShiftClose() {
document.getElementById('clearShiftModal').style.display = "none";
}
//YTReddit
// When the user clicks the button, open the modal
function ytRedditOnClick() {
document.getElementById('ytRedditModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function ytRedditClose() {
document.getElementById('ytRedditModal').style.display = "none";
}
//Apicem Light
// When the user clicks the button, open the modal
function apicemLightOnClick() {
document.getElementById('apicemLightModal').style.display = "block";
}
// When the user clicks on <span> (x), close the modal
function apicemLightClose() {
document.getElementById('apicemLightModal').style.display = "none";
}