controller.js 433 B

12345678910111213141516171819
  1. let controller = {
  2. publicStrand: document.querySelector("#publicStrand"),
  3. loginStrand: document.querySelector("#loginStrand"),
  4. onStart: function(){
  5. if(error){
  6. banner.createError(error);
  7. }
  8. publicObj.display();
  9. },
  10. clearScreen: function(){
  11. this.publicStrand.style.display = "none";
  12. this.loginStrand.style.display = "none";
  13. }
  14. }
  15. controller.onStart();