This commit is contained in:
John Firebaugh
2012-12-17 15:40:38 -08:00
parent 808d5ca8d7
commit 61da54b8af
+2 -1
View File
@@ -140,8 +140,9 @@ iD.Map = function() {
return handles;
}
function hasTwoParents(d) { return parentStructure[d.id] > 1; }
function drawHandles(waynodes, parentStructure, filter) {
function hasTwoParents(d) { return parentStructure[d.id] > 1; }
var handles = g.hit.selectAll('circle.handle')
.filter(filter)
.data(waynodes, key);