()
| 14 | } |
| 15 | |
| 16 | function toggleManual() { |
| 17 | const el = document.getElementById("manual-config"); |
| 18 | el.classList.toggle("open"); |
| 19 | el.previousElementSibling.textContent = el.classList.contains("open") |
| 20 | ? "Manual JSON config ▴" |
| 21 | : "Manual JSON config ▾"; |
| 22 | } |
| 23 | |
| 24 | function startAuthorize() { |
| 25 | const redirectUrl = encodeURIComponent( |
nothing calls this directly
no outgoing calls
no test coverage detected