Skip to content

Instantly share code, notes, and snippets.

@johnnyperkins
Created January 22, 2018 00:56
Show Gist options
  • Save johnnyperkins/9317e5f6e9116d8254d1248d7775b0fc to your computer and use it in GitHub Desktop.
Save johnnyperkins/9317e5f6e9116d8254d1248d7775b0fc to your computer and use it in GitHub Desktop.
Close if click outside panel
$("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