(isStarting)
| 866 | showDorkOptionsModal(); |
| 867 | } |
| 868 | function setDorkExecutionStarting(isStarting) { |
| 869 | isStartingDorkExecution = isStarting; |
| 870 | if (!UI.dorkOptionsProceed) return; |
| 871 | |
| 872 | if (isStarting) { |
| 873 | UI.dorkOptionsProceed.disabled = true; |
| 874 | UI.dorkOptionsProceed.textContent = "Starting..."; |
| 875 | return; |
| 876 | } |
| 877 | |
| 878 | UI.dorkOptionsProceed.textContent = "Proceed"; |
| 879 | validateDorkOptionsModal(); |
| 880 | } |
| 881 | |
| 882 | async function handleProceedDorkOptions() { |
| 883 | if (isStartingDorkExecution) { |
no test coverage detected