* Complete tutorial and save preference
()
| 193 | * Complete tutorial and save preference |
| 194 | */ |
| 195 | private complete(): void { |
| 196 | if (!this.overlay) return; |
| 197 | |
| 198 | this.overlay.style.display = 'none'; |
| 199 | |
| 200 | try { |
| 201 | localStorage.setItem(STORAGE_KEY, 'true'); |
| 202 | } catch { |
| 203 | // localStorage not available |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Reset tutorial (for testing) |