This commit is contained in:
Mike Bostock 2011-08-22 14:03:19 -07:00
Родитель 07affa2265 debf96c742
Коммит 7ddb3ca0ea
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -143,7 +143,7 @@ d3.layout.chord = function() {
if (source.value || target.value) {
chords.push(source.value < target.value
? {source: target, target: source}
: {source: source, target: target})
: {source: source, target: target});
}
}
}

Просмотреть файл

@ -85,7 +85,7 @@ d3.layout.chord = function() {
if (source.value || target.value) {
chords.push(source.value < target.value
? {source: target, target: source}
: {source: source, target: target})
: {source: source, target: target});
}
}
}