MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / syncTerminalToggle

Function syncTerminalToggle

web/scripts/ragnar_modern.js:1043–1046  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1041 if (_sensingLogTimer) return;
1042 const logEl = document.getElementById('sensing-install-log');
1043 if (logEl) logEl.classList.remove('hidden');
1044 const tick = () => {
1045 fetch('/api/sensing/install-log', { cache: 'no-store' })
1046 .then(r => r.json())
1047 .then(s => {
1048 if (logEl && s.log) { logEl.textContent = s.log; logEl.scrollTop = logEl.scrollHeight; }
1049 if (!s.installing) {

Callers 2

applyTerminalVisibilityFunction · 0.85
showTabFunction · 0.85

Calls 1

_terminalEnabledFunction · 0.85

Tested by

no test coverage detected