()
| 549 | } |
| 550 | |
| 551 | async function openAutoQuickRefreshModal() { |
| 552 | if (!elements.autoQuickRefreshModal) return; |
| 553 | await loadAutoQuickRefreshSettings({ silent: false }); |
| 554 | autoQuickRefreshFormDirty = false; |
| 555 | fillAutoQuickRefreshForm({ force: true, syncSettings: true, syncRuntime: true }); |
| 556 | elements.autoQuickRefreshModal.classList.add('active'); |
| 557 | } |
| 558 | |
| 559 | function closeAutoQuickRefreshModal() { |
| 560 | autoQuickRefreshFormDirty = false; |
nothing calls this directly
no test coverage detected