Current Google chrome stable version stopped manually blocking pinch zoom, which was possible in older versions with following settings:
chrome://flags/#enable-pinch
I am getting attacks in my kiosk from some random pinch zoom/multi touch inputs.
How to tell JavaScript to disable pinch zoom/multi touch? (to protect the kiosk)
I tried following but nothing is stopping the kiosk from ignore pinch zoom attacks.
$(document).ready(function() {
$(document).bind('contextmenu', function() {
console.log('NO NO NO. STOP!!!');
window.location.reload();
return false;
});
$(document).mousedown( function() {
console.log('NO NO NO. STOP!!!');
return false;
});
});
EDIT:
chrome://flags/#enable-pinch
- never works anymore in Google chrome. Google should not have removed it and community should have protested to not have it removed.