Last active
July 6, 2017 08:08
-
-
Save igortatarenko/d7e15972218d06649caf9b93708d597b to your computer and use it in GitHub Desktop.
on mobile safari with js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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