MCPcopy Create free account
hub / github.com/Forward-Future/loopy / setWeeklyStatus

Function setWeeklyStatus

loop-library/site/script.js:1053–1061  ·  view source on GitHub ↗
(message, kind = "")

Source from the content-addressed store, hash-verified

1051 }
1052
1053 formStatus.textContent = message;
1054 formStatus.classList.toggle("is-success", kind === "success");
1055 formStatus.classList.toggle("is-error", kind === "error");
1056}
1057
1058function setWeeklyStatus(message, kind = "") {
1059 if (!weeklyStatus) {
1060 return;
1061 }
1062
1063 weeklyStatus.textContent = message;
1064 weeklyStatus.classList.toggle("is-success", kind === "success");

Callers 2

initializeFormProtectionFunction · 0.85
script.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected