feat: added some more recipe button functionality

This commit is contained in:
Joshua Shoemaker 2017-02-01 17:57:43 -06:00
parent 2e0a8c5adb
commit a5dc1ae353

View File

@ -117,6 +117,9 @@ function addRecipe(drink, recipe){
case "ESPRESSOMACCHIATO":
drink.recipe = Object.assign(drink.recipe, espressoMacchiato(drink));
break;
case "ESPRESSOCONPANNA":
drink.recipe = Object.assign(drink.recipe, espressoConPanna(drink));
break;
case "LATTE":
drink.recipe = Object.assign(drink.recipe, latte(drink));
break;