-
Notifications
You must be signed in to change notification settings - Fork 12
/
ecosystem.js
27 lines (23 loc) · 1.03 KB
/
ecosystem.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
function appshide() {
document.getElementById("ecosystem-main").style.display = "block";
document.getElementById("ecosystem-wizard").style.display = "none";
document.getElementById("ecosystem-system").style.display = "none";
document.getElementById("ecosystem-rpk").style.display = "none";
document.getElementById("ecosystem-rhinodrop").style.display = "none";
}
function wizardshow() {
document.getElementById("ecosystem-main").style.display = "none";
document.getElementById("ecosystem-wizard").style.display = "block";
}
function systemshow() {
document.getElementById("ecosystem-main").style.display = "none";
document.getElementById("ecosystem-system").style.display = "block";
}
function rpkshow() {
document.getElementById("ecosystem-main").style.display = "none";
document.getElementById("ecosystem-rpk").style.display = "block";
}
function dropshow() {
document.getElementById("ecosystem-main").style.display = "none";
document.getElementById("ecosystem-rhinodrop").style.display = "block";
}