Created
January 22, 2018 00:56
-
-
Save johnnyperkins/9317e5f6e9116d8254d1248d7775b0fc to your computer and use it in GitHub Desktop.
Close if click outside panel
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
$("body").click(function(e) { | |
if ($(e.target).closest('.catalog-side-panel > ul').length === 0 && $(e.target).closest(sidebarBtn).length === 0) { | |
toggleSidebarNav("close"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment