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 Jan 21, 2019. It is now read-only.
Angular has internal cache of initialized components. If I include one module as dependency in several modules (one sync, one async) it gives an exception.
The reason - <match> directive was initialized by angular and then by app.register again.
I see 2 possible ways. Either find find the way to access that internal Angular cache, so I will not init same directive more then once. Or always use my own app.register to take full control over caching.
The text was updated successfully, but these errors were encountered:
Angular has internal cache of initialized components. If I include one module as dependency in several modules (one sync, one async) it gives an exception.
The reason -
<match>
directive was initialized by angular and then by app.register again.I see 2 possible ways. Either find find the way to access that internal Angular cache, so I will not init same directive more then once. Or always use my own app.register to take full control over caching.
The text was updated successfully, but these errors were encountered: