remove cruft

This commit is contained in:
Tyler 2021-06-05 22:22:03 -05:00
parent 4b5ab5fcdb
commit 504987c178
1 changed files with 0 additions and 5 deletions

View File

@ -206,17 +206,14 @@ function checkRegion(region) {
var status = selectedRegions.get(region)
return status;
}
function selectComponent(component) {
selectedComponents.set(component, true);
console.log(selectedComponents);
}
function deselectComponent(component) {
selectedComponents.set(component, false);
console.log(selectedComponents);
}
function toggleRegion(region) {
if (checkRegion(region) == false) {
selectRegion(region);
@ -235,11 +232,9 @@ function deselectRegion(region) {
function setButtonColor(buttonName) {
document.getElementById(buttonName).style.background = '#00FF00';
}
function clearButtonColor(buttonName) {
document.getElementById(buttonName).style.background = '';
}
function selectCheckbox(box) {
box.setAttribute("class", "checked");
}