Replies: 0
No problems scrolling on droid, but I hear you can’t scroll down to the privacy policy in the popup on iphone.
I googled and this might help, but I’m really not sure:
const targetElement = document.getElementById(“popup”); //only popup can scroll
//put this when popup opens, to stop body scrolling
bodyScrollLock.disableBodyScroll(targetElement);
//put this when close popup and show scrollbar in body
bodyScrollLock.enableBodyScroll(targetElement);