controller.js 603 B

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