({ commit })
| 129 | return commit('setTutorialActive', tutorialActive) |
| 130 | }, |
| 131 | restartTutorial ({ commit }) { |
| 132 | commit('setTutorialActive', false) |
| 133 | // Give it a moment to react first... |
| 134 | return setTimeout(() => commit('setTutorialActive', true) |
| 135 | , 500) |
| 136 | }, |
| 137 | resetTutorial ({ commit }, options) { |
| 138 | return commit('resetTutorial', options) |
| 139 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected