From 97ab739f1be4a82e84b2e998804e6cb12f288592 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Mon, 11 Feb 2013 11:00:45 -0500 Subject: [PATCH] Update bound data for all elements of points, vertices --- js/id/svg/points.js | 1 + js/id/svg/vertices.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/id/svg/points.js b/js/id/svg/points.js index a7fdb10fe..838faf2bb 100644 --- a/js/id/svg/points.js +++ b/js/id/svg/points.js @@ -52,6 +52,7 @@ iD.svg.Points = function(projection) { // sets the data (point entity) on the element groups.select('image') .attr('xlink:href', imageHref); + groups.select('.shadow, .stroke'); groups.exit() .remove(); diff --git a/js/id/svg/vertices.js b/js/id/svg/vertices.js index e9769a374..339c0752a 100644 --- a/js/id/svg/vertices.js +++ b/js/id/svg/vertices.js @@ -40,8 +40,7 @@ iD.svg.Vertices = function(projection) { // Selecting the following implicitly // sets the data (vertix entity) on the elements - groups.select('circle.fill'); - groups.select('circle.stroke'); + groups.select('circle.fill, circle.stroke, circle.shadow'); groups.exit() .remove();