You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
I'm using ResizeObserver for which I use a polyfill because its browser support is limited. Now, recently, chrome 64 natively supports this API with the result that changes trigged by ResizeObserver don't trigger changedetection in my angular app.
constobserver=newwindow.ResizeObserver(entries=>{this.observedWidth=entries[0].contentRect.width;// Outside a zone??!!});observer.observe(this.resizable.nativeElement);
The expected behaviour can be seen in firefox/safari and chrome 63 of course.
Now I don't know that much about Zone.js. but I would expect Zone.js to take care of this?