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 410edb1 commit 42b0e6a
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.visibility= "visible";
row.style= "display:block;";
}
else if(num === 1){
row.visibility = "hidden";
row.style = "display:none;";
}
}

Expand Down

0 comments on commit 42b0e6a

Please sign in to comment.