fix hazards don't fully scroll close #62

This commit is contained in:
Matt Walsh
2025-02-23 21:07:34 -06:00
parent fdbf11dcd4
commit d472df2e26

View File

@@ -122,7 +122,7 @@ class Hazards extends WeatherDisplay {
// base count change callback
baseCountChange(count) {
// calculate scroll offset and don't go past end
let offsetY = Math.min(this.elem.querySelector('.hazard-lines').getBoundingClientRect().height - 390, (count - 150));
let offsetY = Math.min(this.elem.querySelector('.hazard-lines').offsetHeight - 390, (count - 150));
// don't let offset go negative
if (offsetY < 0) offsetY = 0;