-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexCode.js
18 lines (18 loc) · 1.25 KB
/
indexCode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var tabOpen=1
function openTab(x) {
tabOpen=x
}
window.setInterval(function(){
document.getElementById("buttonIntroduction").className = (tabOpen==1) ? "buttonon" : "buttonoff";
document.getElementById("Introduction").style.display = (tabOpen==1) ? "inline-block" : "none";
document.getElementById("buttonFundamentalFunctions").className = (tabOpen==2) ? "buttonon" : "buttonoff";
document.getElementById("Fundamental Functions").style.display = (tabOpen==2) ? "inline-block" : "none";
document.getElementById("buttonSoftcaps").className = (tabOpen==3) ? "buttonon" : "buttonoff";
document.getElementById("Softcaps").style.display = (tabOpen==3) ? "inline-block" : "none";
document.getElementById("buttonScalings").className = (tabOpen==4) ? "buttonon" : "buttonoff";
document.getElementById("Scalings").style.display = (tabOpen==4) ? "inline-block" : "none";
document.getElementById("buttonMiscellaneous").className = (tabOpen==-1) ? "buttonon" : "buttonoff";
document.getElementById("Miscellaneous").style.display = (tabOpen==-1) ? "inline-block" : "none";
document.getElementById("buttonChangelog").className = (tabOpen==-2) ? "buttonon" : "buttonoff";
document.getElementById("Changelog").style.display = (tabOpen==-2) ? "inline-block" : "none";
}, 50);