MCPcopy Create free account
hub / github.com/Coneja-Chibi/CarrotKernel / nextTutorialStep

Function nextTutorialStep

tutorials.js:426–433  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

424
425// Navigate to next tutorial step
426export function nextTutorialStep() {
427 if (currentStep < tutorialSteps.length - 1) {
428 currentStep++;
429 showTutorialStep();
430 } else {
431 closeTutorial();
432 }
433}
434
435// Navigate to previous tutorial step
436export function previousTutorialStep() {

Callers 1

index.jsFile · 0.85

Calls 2

showTutorialStepFunction · 0.85
closeTutorialFunction · 0.85

Tested by

no test coverage detected