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
However, the content in the second div will show behind the cgBusy while it's finishing up because my promise completed but cg-busy is still displaying. I want my div to show after cgBusy goes away.
In looking at the code, there is a call which is used in the directive for it's ng-show, that would be perfect for me: $cgBusyIsActive(). Then I could do
I'm using minDuration because the action is quick but I'm "Checking for updates ..." and I want to leave it up long enough for them to read.
However, the content in the second div will show behind the cgBusy while it's finishing up because my promise completed but cg-busy is still displaying. I want my div to show after cgBusy goes away.
In looking at the code, there is a call which is used in the directive for it's ng-show, that would be perfect for me: $cgBusyIsActive(). Then I could do
<div ng-show="!$cgBusyIsActive() && $ctrl.updateResult.done">
It is created, however, in a child scope, so I don't have access to it. It would be great to be able to have this feature.
The text was updated successfully, but these errors were encountered: