Don’t preventDefault on mousedown (fixes #2115)

This prevents blur events from getting properly dispatched.
This commit is contained in:
John Firebaugh
2014-05-28 18:02:44 -07:00
parent c30ba03606
commit cb2121b7c4
-2
View File
@@ -16,8 +16,6 @@ iD.behavior.Lasso = function(context) {
.on('mouseup.lasso', mouseup);
d3.event.stopPropagation();
d3.event.preventDefault();
}
}