DEV Community

Discussion on: Pull to refresh animation with Vanilla JavaScript

Collapse
 
limbara profile image
Nico Limbara

let changeY = pStart.y < pCurrent.y? Math.abs(pStart.y - pCurrent.y) : 0; or it might trigger loading

Collapse
 
vijitail profile image
vijitail • Edited

Thanks man for pointing that out. Yes, otherwise it would trigger loading on swipe up as well. Great observations.