Begin adding control area. Remove un-needed comment.

This commit is contained in:
Rob L
2016-07-08 15:07:21 -04:00
parent ec3ed413bf
commit f213489a6e
2 changed files with 13 additions and 4 deletions

8
js/GUI.Utils.js Normal file
View File

@ -0,0 +1,8 @@
function openTab(tabName) {
var i;
var x = document.getElementsByClassName("tab");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(tabName).style.display = "block";
}