This commit is contained in:
Joseph Schorr 2014-11-10 11:36:47 -05:00
parent a1147236ea
commit 9408138230

View file

@ -2585,7 +2585,10 @@ quayApp.directive('focusablePopoverContent', ['$timeout', '$popover', function (
$body = $('body');
var hide = function() {
$body.off('click');
if (!scope) { return; }
scope.$apply(function() {
if (!scope) { return; }
scope.$hide();
});
};