diff --git a/core/src/components/refresher/refresher.tsx b/core/src/components/refresher/refresher.tsx index 69550e2f3f..da81476d6d 100644 --- a/core/src/components/refresher/refresher.tsx +++ b/core/src/components/refresher/refresher.tsx @@ -237,7 +237,9 @@ export class Refresher implements ComponentInterface { } // prevent native scroll events - ev.preventDefault(); + if (ev.cancelable) { + ev.preventDefault(); + } // the refresher is actively pulling at this point // move the scroll element within the content element