Spaces:
Sleeping
Sleeping
Update templates/menu.html
#2
by
geethareddy
- opened
- templates/menu.html +1 -1
templates/menu.html
CHANGED
@@ -1430,7 +1430,7 @@
|
|
1430 |
|
1431 |
softDrinkIncreaseBtn.addEventListener('click', function() {
|
1432 |
let currentQuantity = parseInt(softDrinkQuantityInput.value);
|
1433 |
-
if (currentQuantity <
|
1434 |
currentQuantity++;
|
1435 |
softDrinkQuantityInput.value = currentQuantity;
|
1436 |
}
|
|
|
1430 |
|
1431 |
softDrinkIncreaseBtn.addEventListener('click', function() {
|
1432 |
let currentQuantity = parseInt(softDrinkQuantityInput.value);
|
1433 |
+
if (currentQuantity < 300) {
|
1434 |
currentQuantity++;
|
1435 |
softDrinkQuantityInput.value = currentQuantity;
|
1436 |
}
|