Modifying anuglar-bootstrap tooltip to use scope.$evalAsync to fix bug (#15262)

This commit is contained in:
Brandon Kobel 2017-12-04 07:05:30 -05:00 committed by GitHub
parent 3d01a544d2
commit 1a1894df90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -175,7 +175,7 @@ angular.module( 'ui.bootstrap.tooltip', [ 'ui.bootstrap.position', 'ui.bootstrap
}
function hideTooltipBind () {
scope.$apply(function () {
scope.$evalAsync(function () {
hide();
});
}