removed logs
This commit is contained in:
parent
ec8c086c14
commit
1d0ad7f222
7
main.js
7
main.js
@ -30,7 +30,7 @@ function initFoodList() {
|
|||||||
function onFoodSearched() {
|
function onFoodSearched() {
|
||||||
const food = foodSearch.value;
|
const food = foodSearch.value;
|
||||||
const foodLC = food.toLowerCase();
|
const foodLC = food.toLowerCase();
|
||||||
|
|
||||||
if (food == "") {
|
if (food == "") {
|
||||||
createSearchEntries([]);
|
createSearchEntries([]);
|
||||||
return;
|
return;
|
||||||
@ -169,7 +169,6 @@ function updateFoodAmount(food, amount, kcalAmount, fatAmount, carbsAmount, suga
|
|||||||
sugarAmount.textContent = `${parseInt(sugar)}g`;
|
sugarAmount.textContent = `${parseInt(sugar)}g`;
|
||||||
proteinsAmount.textContent = `${parseInt(proteins)}g`;
|
proteinsAmount.textContent = `${parseInt(proteins)}g`;
|
||||||
alcAmount.textContent = `${parseInt(alc)}g`;
|
alcAmount.textContent = `${parseInt(alc)}g`;
|
||||||
console.log(`${food.name} has ${food.kcal}kcal/100${food.unit}`)
|
|
||||||
updateSummary();
|
updateSummary();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -223,7 +222,7 @@ function getScoreColor(density, unit) {
|
|||||||
return "green";
|
return "green";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
case "ml": {
|
case "ml": {
|
||||||
if (density >= 0.1) {
|
if (density >= 0.1) {
|
||||||
return "red"
|
return "red"
|
||||||
@ -232,4 +231,4 @@ function getScoreColor(density, unit) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user