grahambewley of Design Team
4/23/2020 - 7:20 PM

Close Overlays Using "Escape" Key

Close Overlays Using "Escape" Key on keyboard (Team members and Pop-ups)

<script>
  if(!window.suppress) {
    $(document).keyup(function(e) {
     if (e.key === "Escape") {
        const overlays = document.querySelectorAll('.overlay-content');
        overlays.forEach(overlay => {
          overlay.classList.remove('is-showing');
        });
        document.querySelector('html').classList.remove('overlay-open');
      }
    });
  }
</script>