Skip to content

Commit fd73f5e

Browse files
chore(tslint): member-access
1 parent 3600c7c commit fd73f5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/directives/uiView.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ const ng2ComponentInputs = (factory: ComponentFactory<any>): InputMapping[] => {
9494
`
9595
})
9696
export class UIView {
97+
static PARENT_INJECT = "UIView.PARENT_INJECT";
98+
9799
@ViewChild('componentTarget', {read: ViewContainerRef}) _componentTarget: ViewContainerRef;
98100
@Input('name') name: string;
99101
@Input('ui-view') set _name(val: string) { this.name = val; }
@@ -107,8 +109,6 @@ export class UIView {
107109
private _uiViewData: ActiveUIView = <any> {};
108110
private _parent: ParentUIViewInject;
109111

110-
static PARENT_INJECT = "UIView.PARENT_INJECT";
111-
112112
constructor(
113113
public router: UIRouter,
114114
@Inject(UIView.PARENT_INJECT) parent,

0 commit comments

Comments
 (0)