MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / showModalWarning

Function showModalWarning

codeclash/viewer/static/js/picker.js:176–181  ·  view source on GitHub ↗
(message)

Source from the content-addressed store, hash-verified

174}
175
176function 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
183function hideModalWarning() {
184 document.getElementById("modal-warning").classList.remove("show");

Calls

no outgoing calls

Tested by

no test coverage detected