Skip to content

Instantly share code, notes, and snippets.

@Anthodpnt
Created May 5, 2017 08:13
Show Gist options
  • Save Anthodpnt/34992bc99d67164bd5fd66add03ba1b3 to your computer and use it in GitHub Desktop.
Save Anthodpnt/34992bc99d67164bd5fd66add03ba1b3 to your computer and use it in GitHub Desktop.
Lock Scroll
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