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 Apr 12, 2024. It is now read-only.
other (Please do not submit support requests here (see above))
Current behavior:
AngularJS code by default does not have access to a Zone (as it typically does not exist). However, in NgUpgrade the NgZone can be injected. Since some AngularJS code may be used in vanilla AngularJS as well as NgUpgrade contexts, it is awkward to include performant handling of zones without breaking the AngularJS version.
Expected / new behavior:
A service is exposed that includes the run and runOutsideAngular methods. In AngularJS, these are just stubs that call the callback with no side effects. In an NgUpgrade context, they call the same methods on the actual NgZone.
Minimal reproduction of the problem with instructions: