DEV Community

Discussion on: Route-Fully-Rendered Detection in Angular

Collapse
 
oleksandr profile image
Oleksandr • Edited

Interesting, there is a problem that if you assign prop which is used in a template - it takes time for respective elements to be rendered by Angular. Is it possible that zone is stable but angular still do some operations with DOM?

Collapse
 
frosty profile image
Aaron Frost

No. Actions in the DOM are synchronous and would happen in the same even cycle. Any promises or setTimeouts that would something on the next event cycle would cause the zone to destabilize.