controller.js 318 B

1234567891011
  1. let controller = {
  2. recipesStrand: document.querySelector("#recipesStrand"),
  3. singleRecipeStrand: document.querySelector("#singleRecipeStrand"),
  4. clearScreen: function(){
  5. this.recipesStrand.style.display = "none";
  6. this.singleRecipeStrand.style.display = "none";
  7. }
  8. }
  9. recipesObj.display();