This commit fixes a spelling error in the drink-water project
This commit is contained in:
parent
2c455d26f3
commit
3a85d751c3
@ -1,5 +1,5 @@
|
|||||||
const smallCups = document.querySelectorAll('.cup-small')
|
const smallCups = document.querySelectorAll('.cup-small')
|
||||||
const listers = document.getElementById('liters')
|
const liters = document.getElementById('liters')
|
||||||
const percentage = document.getElementById('percentage')
|
const percentage = document.getElementById('percentage')
|
||||||
const remained = document.getElementById('remained')
|
const remained = document.getElementById('remained')
|
||||||
|
|
||||||
@ -44,6 +44,6 @@ function updateBigCup() {
|
|||||||
remained.style.height = 0
|
remained.style.height = 0
|
||||||
} else {
|
} else {
|
||||||
remained.style.visibility = 'visible'
|
remained.style.visibility = 'visible'
|
||||||
listers.innerText = `${2 - (250 * fullCups / 1000)}L`
|
liters.innerText = `${2 - (250 * fullCups / 1000)}L`
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user