Last active
September 14, 2018 11:06
-
-
Save FullStackForger/3af20352df43edd4a62f887bb4c73708 to your computer and use it in GitHub Desktop.
JL AEM dev helpers
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
(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