()
| 181 | } |
| 182 | |
| 183 | // Opens the guide dialog starting at the first page. |
| 184 | function showGuide() { |
| 185 | currentPage = 0; |
| 186 | updateGuide(); |
| 187 | const guideDialog = document.getElementById("quickstart-guide"); |
| 188 | if (guideDialog) { |
| 189 | guideDialog.showModal(); |
| 190 | // Add styles to ensure dialog has no black background |
| 191 | guideDialog.style.backgroundColor = 'transparent'; |
| 192 | guideDialog.style.background = 'none'; |
| 193 | // Focus the dialog for keyboard navigation |
| 194 | guideDialog.focus(); |
| 195 | } else { |
| 196 | console.error('Guide dialog not found'); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | // Closes the guide dialog. |
no test coverage detected