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
{{ message }}
This repository was archived by the owner on Nov 25, 2022. It is now read-only.
When using jQuery in a project the following line gives the error in the title:
var scrollTop = e.detail.scrollTop;It has to be replaced with this line to work:
var scrollTop = e.originalEvent.detail.scrollTop;An if statement has to be used to detect if jQuery is used but I don't know how to do that.
Update
This fix seems to work in iOS but not in Android. This can be seen in both chrome developer tools device mode and the actual devices.