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.
Starting at 1382d4e, I'm no longer able to use a nested transclusion with ng-repeat.
My use case is the following:
<parent><childitems="value in array">
{{ value }}
</child></parent>
Both parent and child directives have transclude: true. parent has scope: true, child has scope: false. items attribute is replaced with ng-repeat after some parsing in the compile function.
Something I noted while debugging in Batarang is that previously, I had a scope tree like this:
- 00A
|- 00B
- 00C
|- 00D
where 00A/00C had the value from the original array and 00B/00D were the content of each item in `ng-repeat.