controller.js 580 B

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