()
| 434 | |
| 435 | // Navigate to previous tutorial step |
| 436 | export function previousTutorialStep() { |
| 437 | if (currentStep > 0) { |
| 438 | currentStep--; |
| 439 | showTutorialStep(); |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | // Close tutorial |
| 444 | export function closeTutorial() { |
no test coverage detected