()
| 473 | } |
| 474 | |
| 475 | function showDorkOptionsModal() { |
| 476 | if (UI.dorkOptionsModal) { |
| 477 | if (UI.autoImportResultList) { |
| 478 | setFieldError(UI.autoImportResultList, false); |
| 479 | } |
| 480 | validateDorkOptionsModal(); |
| 481 | UI.dorkOptionsModal.style.display = "flex"; |
| 482 | } |
| 483 | } |
| 484 | function hideDorkOptionsModal() { |
| 485 | if (UI.dorkOptionsModal) { |
| 486 | UI.dorkOptionsModal.style.display = "none"; |
no test coverage detected