12

as a progressive application is it not good to refresh application accidentally by pulling down the page. is there any standard way (not css tricks) to disable refreshing entire page in PWA?

sadeghhp
  • 621
  • 14
  • 28

1 Answers1

18

It works.

body
{
  overscroll-behavior-y: contain;
}
Philippe
  • 861
  • 10
  • 10
Amir
  • 782
  • 1
  • 9
  • 19
  • This no longer works on iOS. A working solution for me is on this page that addresses the iOS issue generally: https://stackoverflow.com/a/69589919/2927114 – Reggie Pinkham Dec 29 '22 at 23:37