Fix way node dragging. Fixes #279

This commit is contained in:
Tom MacWright
2012-12-14 13:51:36 -05:00
parent 1abffc6f8a
commit b5065d81c4
+1 -1
View File
@@ -4,7 +4,7 @@ iD.modes._dragFeatures = function(mode) {
var dragbehavior = d3.behavior.drag()
.origin(function(entity) {
var p = mode.map.projection(entity.loc);
d3.event.sourceEvent.stopPropagation();
// d3.event.sourceEvent.stopPropagation();
return { x: p[0], y: p[1] };
})
.on('drag', function(entity) {