I\'ve created a small HTML5 web application for my company.
This application displays a list of items and everything works fine.
The application is mainly us
The default action of the pull-to-refresh effect can be effectively prevented by doing any of the following :
preventDefault’ing some portion of the touch sequence, including any of the following (in order of most disruptive to least disruptive):
touch-action: none” to touch-targeted elements, where appropriate, disabling default actions (including pull-to-refresh) of the touch sequence.overflow-y: hidden” to the body element, using a div for scrollable content if necessary.chrome://flags/#disable-pull-to-refresh-effect).See more