tarzanbappa
tarzanbappa

Reputation: 4968

Chrome debugger stops at a function even without a DOM break point

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

Answers (1)

T.J. Crowder
T.J. Crowder

Reputation: 1075209

It sounds like you have a Request Animation Frame breakpoint set:

enter image description here

You can find that in dev tools on the Sources tab on the right-hand side under Event Listener Breakpoints > Animation.

Upvotes: 2

Related Questions