()
| 1201 | } |
| 1202 | |
| 1203 | function resetGenerateLinkButtonState() { |
| 1204 | const btn = document.getElementById("generate-link-btn"); |
| 1205 | if (!btn) return; |
| 1206 | btn.disabled = false; |
| 1207 | if (btn.dataset.originalText) { |
| 1208 | btn.textContent = btn.dataset.originalText; |
| 1209 | } |
| 1210 | } |
| 1211 | |
| 1212 | function getBindMode() { |
| 1213 | const modeSelect = document.getElementById("bind-mode-select"); |
no outgoing calls
no test coverage detected