UNPKG

@jpmorganchase/perspective-examples

Version:
3 lines 200 B
var firstMove; window.addEventListener('touchstart', function (e) { firstMove = true; }); window.addEventListener('touchmove', function (e) { if (firstMove) {e.preventDefault();firstMove = false;} });