Skip to content

Instantly share code, notes, and snippets.

@Nitrodist
Created December 11, 2013 16:39
Show Gist options
  • Save Nitrodist/7913848 to your computer and use it in GitHub Desktop.
Save Nitrodist/7913848 to your computer and use it in GitHub Desktop.
on("mouseleave", function () {
var _this = this;
var some_function = function() {
setTimeout(function () {
if (!$(".popover:hover").length) {
$(_this).popover("hide")
} else {
some_function();
}
}, 50);
};
some_function();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment