Reputation: 4968
Hi I have a angular js application. And when I run my application and hit F12 and open the debugger, for each and every page it continuously calling following function and stops there just like it has a break point.
Here is the stopping point
TagCanvas.NextFrameRAF = function() {
requestAnimationFrame(DrawCanvasRAF);
};
But this function doesn't have any break points.
Upvotes: 3
Views: 313
Reputation: 1075209
It sounds like you have a Request Animation Frame breakpoint set:
You can find that in dev tools on the Sources tab on the right-hand side under Event Listener Breakpoints > Animation.
Upvotes: 2