Skip to content

Commit

Permalink
unused function args
Browse files Browse the repository at this point in the history
  • Loading branch information
coilysiren committed Mar 8, 2018
1 parent 2c2318a commit ced0365
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/app/step.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ import * as $ from "jquery";
selector: "step-root",
template: `
<intro-root
(advanceStep)="advanceIntro($event)"
(advanceStep)="advanceIntro()"
></intro-root>
<first-step
(advanceStep)="advanceFirstStep($event)"
(advanceStep)="advanceFirstStep()"
></first-step>
<second-step
(advanceStep)="advanceSecondStep($event)"
(advanceStep)="advanceSecondStep()"
></second-step>
<third-step
(advanceStep)="advanceThirdStep($event)"
(advanceStep)="advanceThirdStep()"
></third-step>
<fourth-step
(advanceStep)="advanceFourthStep($event)"
(advanceStep)="advanceFourthStep()"
></fourth-step>
<fifth-step
(advanceStep)="advanceFifthStep($event)"
(advanceStep)="advanceFifthStep()"
></fifth-step>
<sixth-step
(advanceStep)="advanceSixthStep($event)"
(advanceStep)="advanceSixthStep()"
></sixth-step>
`,
providers: [
Expand Down

0 comments on commit ced0365

Please sign in to comment.