Is there a 'Quasar way' of disabling browser pull-to-refresh?
-
Browsers have their native pull to refresh, which is something that I absolutely do not want in my swipe-heavy app.
Right now I have disabled it in quite standard way:body position: absolute overflow-y: hidden .app-wrapper position: absolute overflow: auto
This messes with Quasar’s scroll detection and my scroll events are not firing properly.
Any ideas how to solve it with the least amount of headache? -
Well, the best way to handle is
overscroll-behavior
. Problem with this is, that iOS does not support it. Still, right now it reduces my problem.