MCPcopy Create free account
hub / github.com/pollinations/pollinations / scrollToGenerator

Function scrollToGenerator

apps/catgpt/script.js:234–242  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

232// ── UI Helpers ───────────────────────────────────────────────────────────────
233
234function 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
244function updateGenerateButtonState() {
245 const hasText = dom.userInput.value.trim().length > 0;

Callers 2

createMemeCardFunction · 0.85
generateMemeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected