MCPcopy Index your code
hub / github.com/stemdeckapp/stemdeck / _showSaved

Function _showSaved

static/js/sections.js:328–336  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

326}
327
328function _showSaved() {
329 const el = document.getElementById("sectionsSaveIndicator");
330 if (!el) return;
331 el.textContent = "Saved";
332 el.className = "sections-save-indicator saved";
333 _savedTimer = setTimeout(() => {
334 el.className = "sections-save-indicator hidden";
335 }, 1800);
336}
337
338function _hideSaveIndicator() {
339 const el = document.getElementById("sectionsSaveIndicator");

Callers 1

_saveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected