(d, id)
| 703 | |
| 704 | |
| 705 | function findLinkedNodes(d, id) { |
| 706 | for (let entry in graph.links) { |
| 707 | if ((graph.links[entry].source.id === d.id && graph.links[entry].target.id === id) || |
| 708 | (graph.links[entry].source.id === id && graph.links[entry].target.id === d.id) || |
| 709 | (graph.links[entry].source.id.endsWith(id) && graph.links[entry].target.id === d.id) || |
| 710 | (graph.links[entry].source.id === d.id && graph.links[entry].target.id.endsWith(id)) |
| 711 | ) { |
| 712 | return true; |
| 713 | } |
| 714 | } |
| 715 | return false; |
| 716 | } |
| 717 | |
| 718 | function highlightGroup(event, obj) { |
| 719 | if (obj) { |
no outgoing calls
no test coverage detected