MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / opSection

Function opSection

packages/sdk-playground/src/main.ts:1157–1166  ·  view source on GitHub ↗
(title: string, ...rows: HTMLElement[])

Source from the content-addressed store, hash-verified

1155}
1156
1157function opSection(title: string, ...rows: HTMLElement[]): HTMLDivElement {
1158 const d = document.createElement("div");
1159 d.className = "op-section";
1160 const h = document.createElement("div");
1161 h.className = "op-title";
1162 h.textContent = title;
1163 d.appendChild(h);
1164 for (const row of rows) d.appendChild(row);
1165 return d;
1166}
1167
1168// ── Timeline drag ─────────────────────────────────────────────────────────────
1169

Callers 13

buildSetStyleSectionFunction · 0.85
buildSetTextSectionFunction · 0.85
buildAddGsapTweenSectionFunction · 0.85
buildSetGsapTweenSectionFunction · 0.85
buildLabelSectionFunction · 0.85
buildClassStyleSectionFunction · 0.85
buildAttributeSectionFunction · 0.85
buildVariableSectionFunction · 0.85
buildFindSectionFunction · 0.85
buildVersionsSectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected