onStepperChange()

in src/app/main/main.component.ts [356:364]


  onStepperChange(e: StepperSelectionEvent) {
    this.stepIndex = e.selectedIndex;
    if (e.selectedIndex !== e.previouslySelectedIndex) {
      this.stepperChanged = true;
    } else {
      this.stepperChanged = false;
    }
    this.analyticsService.report('step', 'stepper', `step ${this.stepIndex}`);
  }