(state, options)
| 86 | } |
| 87 | }, |
| 88 | resetTutorial (state, options) { |
| 89 | if (options == null) { options = {} } |
| 90 | state.tutorialActive = false |
| 91 | if (options.keepIntro && (state.tutorial[0] != null ? state.tutorial[0].intro : undefined)) { |
| 92 | state.tutorial = [state.tutorial[0]] |
| 93 | } else { |
| 94 | state.tutorial = [] |
| 95 | } |
| 96 | }, |
| 97 | setTutorialActive (state, tutorialActive) { |
| 98 | state.tutorialActive = tutorialActive |
| 99 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected