controller.js 438 B

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