Skip to content

Instantly share code, notes, and snippets.

@FullStackForger
Last active September 14, 2018 11:06
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 FullStackForger/3af20352df43edd4a62f887bb4c73708 to your computer and use it in GitHub Desktop.
Save FullStackForger/3af20352df43edd4a62f887bb4c73708 to your computer and use it in GitHub Desktop.
JL AEM dev helpers
(function () {
function toggleOverlay () {
const overlayWrapper = document.querySelector('#OverlayWrapper');
overlayWrapper.style.display = overlayWrapper.style.display === 'none' ? '' : 'none';
}
const dev = {}
window.dev = dev;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment