()
| 5111 | if (sortChords) resort(); |
| 5112 | } |
| 5113 | function resort() { |
| 5114 | chords.sort(function(a, b) { |
| 5115 | return sortChords((a.source.value + a.target.value) / 2, (b.source.value + b.target.value) / 2); |
| 5116 | }); |
| 5117 | } |
| 5118 | chord.matrix = function(x) { |
| 5119 | if (!arguments.length) return matrix; |
| 5120 | n = (matrix = x) && matrix.length; |