Skip to content

Instantly share code, notes, and snippets.

@igortatarenko
Last active July 6, 2017 08:08
Show Gist options
  • Select an option

  • Save igortatarenko/d7e15972218d06649caf9b93708d597b to your computer and use it in GitHub Desktop.

Select an option

Save igortatarenko/d7e15972218d06649caf9b93708d597b to your computer and use it in GitHub Desktop.
on mobile safari with js
// Disable scrolling.
document.ontouchmove = function (e) {
e.preventDefault();
}
// Enable scrolling.
document.ontouchmove = function () {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment