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 has been archived by the owner on Apr 12, 2024. It is now read-only.
The problem is that this
element[0]['ng:compiled'] = true;
sets a flag on instance of element not on the dom. As a result the flag does not get copied when the loop gets unrolled in the ng:repeat and the code gets double compiled
The text was updated successfully, but these errors were encountered:
The issue is with this code in ng:include
if (element[0]['ng:compiled']) {
this.descend(true);
this.directives(true);
} else {
element[0]['ng:compiled'] = true;
The problem is that this
element[0]['ng:compiled'] = true;
sets a flag on instance of element not on the dom. As a result the flag does not get copied when the loop gets unrolled in the ng:repeat and the code gets double compiled
The text was updated successfully, but these errors were encountered: