(tutorialManager, applyCode)
| 6 | |
| 7 | export class TutorialOverlay { |
| 8 | constructor(tutorialManager, applyCode) { |
| 9 | this.manager = tutorialManager; |
| 10 | this.applyCode = applyCode; |
| 11 | this.element = null; |
| 12 | this.visible = false; |
| 13 | |
| 14 | this.createOverlay(); |
| 15 | this.setupEventListeners(); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Create overlay DOM structure |
nothing calls this directly
no test coverage detected