Curious about the current behavior and looking for an explanation.
I have a directive with isolate scope, named dirA. Then I add another directive on top of it, called dirB. My expectation was that the second directive would inherit the isolate scope created by dirA.
Instead, dirB is accessing the controller scope. Why isn't it inheriting the same isolate scope from dirA?
Any assistance is greatly appreciated. I don't have specific code to share at the moment, just seeking clarity. If needed, I can provide two simple directives along with some HTML for better visualization. Thank you in advance.