Reputation: 21565
How to inherit controllers of angular components? In the "old" angular I could use $controller
or $injector
but what shall I do with isolated scopes?
Upvotes: 1
Views: 1021
Reputation: 678
You can use $parent, $$childHead, $$childTail.
Though isolated scope don't inherit prototypically, they do have parent/child references
Upvotes: 1