UNPKG

@jpmorganchase/perspective-examples

Version:
11 lines (10 loc) 229 B
var firstMove; window.addEventListener("touchstart", function() { firstMove = true; }); window.addEventListener("touchmove", function(e) { if (firstMove) { e.preventDefault(); firstMove = false; } });