Skip to content

Instantly share code, notes, and snippets.

@etki
Last active June 18, 2020 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etki/8e320b40c304e7ec3607f5c4b1042be5 to your computer and use it in GitHub Desktop.
Save etki/8e320b40c304e7ec3607f5c4b1042be5 to your computer and use it in GitHub Desktop.
javascript:['layer_bg', 'layer_wrap', 'box_layer_bg', 'box_layer_wrap'].map(id => document.getElementById(id)).filter(e => e).forEach(e => e.style.top = '-100%');document.body.style.overflow = null;
['layer_bg', 'layer_wrap', 'box_layer_bg', 'box_layer_wrap']
.map(id => document.getElementById(id))
.filter(e => e)
.forEach(e => e.style.top = '-100%')
document.body.style.overflow = null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment