()
| 232 | // ── UI Helpers ─────────────────────────────────────────────────────────────── |
| 233 | |
| 234 | function scrollToGenerator() { |
| 235 | requestAnimationFrame(() => { |
| 236 | const section = document.querySelector(".generator-section"); |
| 237 | window.scrollTo({ |
| 238 | top: section.getBoundingClientRect().top + window.scrollY, |
| 239 | behavior: "smooth", |
| 240 | }); |
| 241 | }); |
| 242 | } |
| 243 | |
| 244 | function updateGenerateButtonState() { |
| 245 | const hasText = dom.userInput.value.trim().length > 0; |
no outgoing calls
no test coverage detected