Created
May 5, 2017 08:13
-
-
Save Anthodpnt/34992bc99d67164bd5fd66add03ba1b3 to your computer and use it in GitHub Desktop.
Lock Scroll
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
const events = ['touchstart', 'touchmove']; | |
const lock = (e) => e.returnValue = false; | |
// Lock | |
for (let e of events) { | |
document.addEventListener(e, lock); | |
} | |
// Unlock | |
for (let e of events) { | |
document.removeEventListener(e, lock); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment