(d: NodeData)
| 381 | } |
| 382 | |
| 383 | private dragged(d: NodeData) { |
| 384 | if (this.model.static) { |
| 385 | return; |
| 386 | } |
| 387 | d.fx = d3GetEvent().x; |
| 388 | d.fy = d3GetEvent().y; |
| 389 | } |
| 390 | |
| 391 | private dragended(d: NodeData) { |
| 392 | if (this.model.static) { |
nothing calls this directly
no test coverage detected