I am newbie in front end and maybe it is a stupid question.
I have added
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
but it wouldn't help. Any ideas how to fix it.
hear is the page which I am talking about. https://github.com/AlexK89/Portfolio-page
UPDATE: Just this script solved my problem.
document.documentElement.addEventListener('touchstart', function (event) {if (event.touches.length > 1) { event.preventDefault();}}, false);