Add recursion depth limit for callComponentFunctions()
Closed this issue · 1 comments
EvAlex commented
Test that reproduces the error:
angular.module('recursionTest', ['ng'])
.service('svc1', ['$q', function ($q) {
return {
requestData: $q.defer().promise
};
}])
.service('svc2', ['svc1', function (svc1) {
//svc1.requestData.
}]);
jmatthiesen commented
Hey, @EvAlex, did you close this because it was no longer an issue for you?