Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalzer312 committed May 28, 2024
1 parent d2a4403 commit e8e1f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ function toggleElement(row,num){
//block = show | none = hide
if(num === 0){
console.log("Changing row contact on "+row.style.display);
row.style.display = "visibility:visible";
row.style.visibilty= "visible";
}
else if(num === 1){
row.style.display = "visibility:hidden";
row.style.display = "none";
}
}

Expand Down

0 comments on commit e8e1f11

Please sign in to comment.