Mariano Bagnarelli

Results 1 comments of Mariano Bagnarelli

Hey, I implemented this code to disable pinch zoom using javascript: document.body.addEventListener('touchstart', function(e) { if ( (e.touches.length > 1) || e.targetTouches.length > 1) { e.preventDefault(); e.stopPropagation(); e.stopImmediatePropagation(); } }, {passive:...