Skip to content

Instantly share code, notes, and snippets.

@salipro4ever
Created December 2, 2016 06:39
Show Gist options
  • Save salipro4ever/cfaa42ab8d09fd7145652829b59a69ca to your computer and use it in GitHub Desktop.
Save salipro4ever/cfaa42ab8d09fd7145652829b59a69ca to your computer and use it in GitHub Desktop.
Disable close navbar dropdown when click outside
$('.navbar-glaiz .navbar-nav > li').on({
"shown.bs.dropdown": function () {
this.closable = false;
},
"click": function () {
this.closable = true;
},
"hide.bs.dropdown": function() { return this.closable; }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment