(message)
| 174 | } |
| 175 | |
| 176 | function showModalWarning(message) { |
| 177 | const warning = document.getElementById("modal-warning"); |
| 178 | const warningText = document.getElementById("modal-warning-text"); |
| 179 | warningText.textContent = message; |
| 180 | warning.classList.add("show"); |
| 181 | } |
| 182 | |
| 183 | function hideModalWarning() { |
| 184 | document.getElementById("modal-warning").classList.remove("show"); |
no outgoing calls
no test coverage detected