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
uiCanExit was being bound when registered, like so: $scope.$on('$destroy', $transitions.onBefore({exiting: cfg.node.state.name}, controllerInstance.uiCanExit.bind(controllerInstance)));
This caused ng1 injector not to be able to annotate, because it was a bound copy of the original fn.
The text was updated successfully, but these errors were encountered:
uiCanExit
was being bound when registered, like so:$scope.$on('$destroy', $transitions.onBefore({exiting: cfg.node.state.name}, controllerInstance.uiCanExit.bind(controllerInstance)));
This caused ng1 injector not to be able to annotate, because it was a bound copy of the original fn.
The text was updated successfully, but these errors were encountered: