Is there any way to disable pinch zoom in an electron app?
I can't get it to work from inside the web-view with normal javascript methods as described here: https://stackoverflow.com/a/23510108/665261
It seems the --disable-pinch
flag is not supported by electron.
I have experimented with various methods using:
event.preventDefault()
on javascripttouchmove/mousemove
eventsmeta viewport
tags in HTML-webkit-text-size-adjust
in CSS- flags/config for electron
Is there any method either for webkit in general, or electron in particular?