controller.js 733 B

1234567891011121314151617181920212223
  1. let controller = {
  2. inventoryStrand: document.querySelector("#inventoryStrand"),
  3. addIngredientStrand: document.querySelector("#addIngredientStrand"),
  4. enterTransactionsStrand: document.querySelector("#enterTransactionsStrand"),
  5. enterPurchaseStrand: document.querySelector("#enterPurchaseStrand"),
  6. onStart: function(){
  7. if(error){
  8. banner.createError(error);
  9. }
  10. inventoryObj.display();
  11. },
  12. clearScreen: function(){
  13. this.inventoryStrand.style.display = "none";
  14. this.addIngredientStrand.style.display = "none";
  15. this.enterTransactionsStrand.style.display = "none";
  16. this.enterPurchaseStrand.style.display = "none";
  17. }
  18. }
  19. controller.onStart();