I have angular 2 project where i am using jquery code :
$('#someId').mousemove(someFunction);
To isolate the problem, 'someFunction' is an empty function;
When i move the cursor on the #someId element, i got those errors: Browser Errors
I Tried to raise the event from angular as well, same problem as from jquery;
What is hapenning in platform-browser.umd.ts:934 ?
BrowserDomAdapter.prototype.setProperty = function (el, name, value) { el[name] = value; };
Solution:
The event itself cause the angular zone.js algo to check all the binds. One of them caused iframe source to recalculate the url.