Created
August 6, 2020 15:37
-
-
Save generatepress/35c505f1aac124edf071f9008061ee6d to your computer and use it in GitHub Desktop.
Don't close off-canvas panel on menu item click
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
<script> | |
var slideoutLinks = document.querySelectorAll( '.slideout-navigation ul a' ); | |
for ( var i = 0; i < slideoutLinks.length; i++ ) { | |
slideoutLinks[i].removeEventListener( 'click', closeOffsideOnAction, false ); | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment