Fixed mouseover if item is a location result

This commit is contained in:
Christian Schwarz
2013-12-13 11:05:58 +01:00
parent 5aede6f323
commit 8eeb47d1a6
+2
View File
@@ -202,6 +202,8 @@ iD.ui.FeatureList = function(context) {
}
function mouseover(d) {
if (d.id === -1) return;
context.surface().selectAll(iD.util.entityOrMemberSelector([d.id], context.graph()))
.classed('hover', true);
}