* Handle next button click
()
| 169 | * Handle next button click |
| 170 | */ |
| 171 | handleNext() { |
| 172 | const currentStep = this.manager.getCurrentStep(); |
| 173 | if (currentStep === tutorialSteps.length - 1) { |
| 174 | this.manager.complete(); |
| 175 | } else { |
| 176 | this.manager.next(); |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Handle tutorial completion |
no test coverage detected