MCPcopy Create free account
hub / github.com/SKVNDR/FastDork / showConfigError

Function showConfigError

Script/siteconfig.js:55–63  ·  view source on GitHub ↗
(message)

Source from the content-addressed store, hash-verified

53 // --- Helper Functions ---
54
55 function showConfigError(message) {
56 if (errorElement) {
57 errorElement.textContent = message;
58 errorElement.style.display = "block";
59 window.scrollTo(0, 0); // Scroll to top to make error visible
60 } else {
61 alert(`Error: ${message}`); // Fallback
62 }
63 }
64
65 function hideConfigError() {
66 if (errorElement) {

Callers 3

loadConfigForEditingFunction · 0.85
saveConfigurationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected