Disable chrome pinch zoom with javascript Disable chrome pinch zoom with javascript google-chrome google-chrome

Disable chrome pinch zoom with javascript


This works for me in case anyone shows up here looking for an answer.

document.addEventListener(  'wheel',  function touchHandler(e) {    if (e.ctrlKey) {      e.preventDefault();    }  },  { passive: false });