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
Whenever I scroll to zoom out, the page with my pan-zoom component also scrolls down! Is there a way to disable page scroll while I'm using the scroll wheel to zoom?
The text was updated successfully, but these errors were encountered:
@es-kan I encountered the same problem. A quick fix would be if you create a click listener which will set the
body.style.overflow = 'hidden';
And a blur listener which will set it back to auto.
Unfortunately, this is causing the body to remove the scroll and the page is jumping because it is losing padding on the right because of the missing scroll.
Whenever I scroll to zoom out, the page with my pan-zoom component also scrolls down! Is there a way to disable page scroll while I'm using the scroll wheel to zoom?
The text was updated successfully, but these errors were encountered: