()
| 284 | }, |
| 285 | |
| 286 | delayRender() { |
| 287 | if (main.renderPending) return; |
| 288 | main.renderPending = true; |
| 289 | |
| 290 | window.requestAnimationFrame(() => { |
| 291 | main.renderPending = false; |
| 292 | for (let c of components) { |
| 293 | c.render(main.currentState); |
| 294 | } |
| 295 | }); |
| 296 | } |
| 297 | }; |
| 298 | |
| 299 | const CATEGORY_COLOR = "#f5f5f5"; |
nothing calls this directly
no test coverage detected
searching dependent graphs…