This fixes the calculation of scrollContainer, so it doesn't keep going all the way up to the html element, but stops at body. I've run into this in some cases.
scrollContainer.scrollTop is set in the scrolling logic, but the html element ignores changes to .scrollTop.
This fixes the calculation of
scrollContainer
, so it doesn't keep going all the way up to thehtml
element, but stops atbody
. I've run into this in some cases.scrollContainer.scrollTop
is set in the scrolling logic, but thehtml
element ignores changes to.scrollTop
.Possible fix for issue #53.