help.js 339 B

12345678910
  1. window.helpObj = {
  2. display: function(){
  3. document.getElementById("legalStrand").style.display = "none";
  4. document.getElementById("helpStrand").style.display = "flex";
  5. let button = document.getElementById("logInButton");
  6. button.innerText="LEGAL";
  7. button.onclick = ()=>{legalObj.display()};
  8. }
  9. }