(dialog)
| 291 | let currentDeleteTarget = null; |
| 292 | |
| 293 | function showDialog(dialog) { |
| 294 | if (currentDialog != null) { |
| 295 | overlay.style.display = 'none'; |
| 296 | currentDialog.style.display = 'none'; |
| 297 | } |
| 298 | currentDialog = dialog; |
| 299 | if (dialog != null) { |
| 300 | overlay.style.display = 'block'; |
| 301 | dialog.style.display = 'block'; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | function cancelDialog(e) { |
| 306 | showDialog(null); |
no outgoing calls
no test coverage detected
searching dependent graphs…