(
message,
onConfirm,
onCancel = () => hideModal()
)
| 1265 | ); |
| 1266 | } |
| 1267 | function setupConfirmationModal( |
| 1268 | message, |
| 1269 | onConfirm, |
| 1270 | onCancel = () => hideModal() |
| 1271 | ) { |
| 1272 | showModal(message, [ |
| 1273 | { text: "YES", class: "confirm", onClick: onConfirm }, |
| 1274 | { text: "NO", class: "standard", onClick: onCancel }, |
| 1275 | ]); |
| 1276 | } |
| 1277 | async function loadSelectedDorkListContent() { |
| 1278 | console.log(`[loadSelectedDorkListContent] Called.`); |
| 1279 | if (!UI.listTab2 || !UI.payloadInput) { |
no test coverage detected