Greetings! I am currently working on an angular js application. One issue that I have encountered is when I run the application and open the debugger by hitting F12, I notice that for every page it continuously calls a certain function and seems to stop there as if it has hit a breakpoint.
Below is the point where it stops:
TagCanvas.NextFrameRAF = function() {
requestAnimationFrame(DrawCanvasRAF);
};
Strangely, this function does not contain any breakpoints set.