You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
Using the tooltip directive alongside another directive might cause collision in $digest having both directives $applying their phase.
Specifically in line 2589 on the hideTooltipBind function, a better approach might be
scope.$evalAsync(hide);
instead of:
scope.$apply(function () {
hide();
});
To avoid collision in $digesting.
P.S.
There other ways to solve this problem (such as validating $digest is not in progress).
The text was updated successfully, but these errors were encountered:
Using the tooltip directive alongside another directive might cause collision in $digest having both directives $applying their phase.
Specifically in line 2589 on the hideTooltipBind function, a better approach might be
scope.$evalAsync(hide);
instead of:
scope.$apply(function () {
hide();
});
To avoid collision in $digesting.
P.S.
There other ways to solve this problem (such as validating $digest is not in progress).
The text was updated successfully, but these errors were encountered: