(title: string, ...rows: HTMLElement[])
| 1155 | } |
| 1156 | |
| 1157 | function 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 |
no outgoing calls
no test coverage detected