Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 8f0e799

Browse files
committed
Whitespace fix. Also dropped directives definition
This is duplicated from the NgModule now.
1 parent 5ba2f20 commit 8f0e799

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

bootstrapper/msi/msiBootstrapper.ng2.ts

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
import { Component, Input, OnInit } from '@angular/core';
22

3-
import { IStep, MultiStepIndicatorComponent } from '../../source/components/multiStepIndicator/multiStepIndicator';
3+
import { IStep } from '../../source/components/multiStepIndicator/multiStepIndicator';
44

55
@Component({
6-
selector: 'tsMsiBootstrapper',
7-
template: require('./msi.ng2.html'),
8-
directives: [MultiStepIndicatorComponent]
6+
selector: 'tsMsiBootstrapper',
7+
template: require('./msi.ng2.html'),
98
})
109
export class MsiBootstrapperComponent implements OnInit {
1110
steps: IStep[];
1211
numbered: boolean;
1312
checked: boolean;
1413

15-
constructor() {
14+
constructor() {
1615
this.numbered = false;
1716
this.checked = true;
18-
}
17+
}
1918

20-
ngOnInit() {
19+
ngOnInit() {
2120
this.steps = [
2221
{
2322
title: 'Step 1',
@@ -51,5 +50,5 @@ export class MsiBootstrapperComponent implements OnInit {
5150
},
5251
},
5352
];
54-
}
55-
}
53+
}
54+
}

0 commit comments

Comments
 (0)