We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3600c7c commit fd73f5eCopy full SHA for fd73f5e
src/directives/uiView.ts
@@ -94,6 +94,8 @@ const ng2ComponentInputs = (factory: ComponentFactory<any>): InputMapping[] => {
94
`
95
})
96
export class UIView {
97
+ static PARENT_INJECT = "UIView.PARENT_INJECT";
98
+
99
@ViewChild('componentTarget', {read: ViewContainerRef}) _componentTarget: ViewContainerRef;
100
@Input('name') name: string;
101
@Input('ui-view') set _name(val: string) { this.name = val; }
@@ -107,8 +109,6 @@ export class UIView {
107
109
private _uiViewData: ActiveUIView = <any> {};
108
110
private _parent: ParentUIViewInject;
111
- static PARENT_INJECT = "UIView.PARENT_INJECT";
-
112
constructor(
113
public router: UIRouter,
114
@Inject(UIView.PARENT_INJECT) parent,
0 commit comments