I just placed this code in my App run
$rootScope.$watch((...args) => console.log('digest', args));
And it is seems that something calls $digest all the time. Never ending $digest cycle. All is working just fine, but is it ok?
I've checked all my $interval
and $timeout
usings, and it's seems that it's not the source of problem. Any way to know what called $digest
?