controller.js 411 B

12345678910111213
  1. let controller = {
  2. publicStrand: document.querySelector("#publicStrand"),
  3. loginStrand: document.querySelector("#loginStrand"),
  4. posChoiceStrand: document.querySelector("#posChoiceStrand"),
  5. clearScreen: function(){
  6. this.publicStrand.style.display = "none";
  7. this.loginStrand.style.display = "none";
  8. this.posChoiceStrand.style.display = "none";
  9. }
  10. }
  11. publicObj.display();