Merge pull request #49 from rbajaj1997/master

[Bug Fix] Error on deselecting last cup in project 16
This commit is contained in:
Brad Traversy 2021-03-08 07:45:04 -05:00 committed by GitHub
commit 4dd2f9dd57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ smallCups.forEach((cup, idx) => {
function highlightCups(idx) { function highlightCups(idx) {
if (idx===7 && smallCups[idx].classList.contains("full")) idx--; if (idx===7 && smallCups[idx].classList.contains("full")) idx--;
if(smallCups[idx].classList.contains('full') && !smallCups[idx].nextElementSibling.classList.contains('full')) { else if(smallCups[idx].classList.contains('full') && !smallCups[idx].nextElementSibling.classList.contains('full')) {
idx-- idx--
} }
@ -46,4 +46,4 @@ function updateBigCup() {
remained.style.visibility = 'visible' remained.style.visibility = 'visible'
listers.innerText = `${2 - (250 * fullCups / 1000)}L` listers.innerText = `${2 - (250 * fullCups / 1000)}L`
} }
} }