()
| 326 | } |
| 327 | |
| 328 | function _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 | |
| 338 | function _hideSaveIndicator() { |
| 339 | const el = document.getElementById("sectionsSaveIndicator"); |