You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calculating the viewport bounds in scrolled, $('body').height() is used to calculate bodyHeight. However, with full document scrolling (at least in Chrome and Firefox) the body height can be much smaller than the document height.
Changing $('body').height to $(document).height worked for me.
The text was updated successfully, but these errors were encountered:
When calculating the viewport bounds in
scrolled
, $('body').height() is used to calculate bodyHeight. However, with full document scrolling (at least in Chrome and Firefox) the body height can be much smaller than the document height.Changing$('body').height to $ (document).height worked for me.
The text was updated successfully, but these errors were encountered: