(event, d)
| 472 | d.fy = event.y; |
| 473 | } |
| 474 | function dragended(event, d) { |
| 475 | if (!event.active && simulation) simulation.alphaTarget(0); |
| 476 | d.fx = null; |
| 477 | d.fy = null; |
| 478 | } |
| 479 | |
| 480 | window.addEventListener('node-selected', function(e) { |
| 481 | // When node selection changes (e.g., from list view), update graph node selection |
nothing calls this directly
no outgoing calls
no test coverage detected