MCPcopy Create free account
hub / github.com/TheJoWo/Clean-Clode / updateOutputVisibility

Function updateOutputVisibility

script.js:429–440  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

427 }
428
429 function updateOutputVisibility() {
430 const hasContent = outputText.value.trim();
431 const container = document.querySelector('.tui-container');
432
433 if (hasContent) {
434 outputSection.classList.add('has-content');
435 container.classList.add('has-output');
436 } else {
437 outputSection.classList.remove('has-content');
438 container.classList.remove('has-output');
439 }
440 }
441
442 function performCleanup() {
443 const inputValue = inputText.value;

Callers 2

performCleanupFunction · 0.85
script.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected