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 Feb 22, 2018. It is now read-only.
imagine you have tabs and pane directives where pane has to be a direct child of tabs
<tabs>
<pane title="Overview"> foo text </pane>
</tabs>
The above works, but so does this:
<tabs>
<div>
<pane title="Overview"> foo text </pane>
</div>
</tabs>
but it should not. It works because div has no associated injector and so pane thinks it is a child of tabs
the strange part is that by adding a directive to div it will create a new injector and break the direct parent/child relationship between tabs and pane
The text was updated successfully, but these errors were encountered:
imagine you have
tabs
andpane
directives wherepane
has to be a direct child oftabs
The above works, but so does this:
but it should not. It works because
div
has no associated injector and sopane
thinks it is a child oftabs
the strange part is that by adding a directive to
div
it will create a new injector and break the direct parent/child relationship betweentabs
andpane
The text was updated successfully, but these errors were encountered: