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

Function fetchZapStatus

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

Source from the content-addressed store, hash-verified

20251 hiddenItems.forEach(item => {
20252 html += createLootItemHTML(item);
20253 });
20254
20255 html += `
20256 </div>
20257 </div>
20258 </div>
20259 `;
20260 }
20261
20262 container.innerHTML = html;
20263}
20264
20265function toggleLootExpansion() {
20266 const hiddenItems = document.getElementById('loot-hidden-items');
20267 const expandText = document.getElementById('loot-expand-text');
20268 const expandArrow = document.getElementById('loot-expand-arrow');
20269
20270 if (!hiddenItems || !expandText || !expandArrow) return;
20271
20272 const isHidden = hiddenItems.classList.contains('hidden');
20273

Callers 2

updateZapControlPanelFunction · 0.70
zapClearSessionFunction · 0.70

Calls 3

errorMethod · 0.80
updateElementFunction · 0.70
zapCheckAuthStatusFunction · 0.70

Tested by

no test coverage detected