diff --git a/js/id/svg/vertices.js b/js/id/svg/vertices.js index 0418f63af..2e0982a00 100644 --- a/js/id/svg/vertices.js +++ b/js/id/svg/vertices.js @@ -69,13 +69,13 @@ iD.svg.Vertices = function(projection, context) { groups.select('circle.shadow') .each(center) .attr('r', function(entity) { - return radiuses.shadow[icon(entity) ? 3 : zoom] + return radiuses.shadow[icon(entity) ? 3 : zoom]; }); groups.select('circle.stroke') .each(center) .attr('r', function(entity) { - return radiuses.stroke[icon(entity) ? 3 : zoom] + return radiuses.stroke[icon(entity) ? 3 : zoom]; }); // Each vertex gets either a circle or a use, depending diff --git a/js/id/ui/spinner.js b/js/id/ui/spinner.js index c567dd257..4085d62f7 100644 --- a/js/id/ui/spinner.js +++ b/js/id/ui/spinner.js @@ -15,5 +15,5 @@ iD.ui.Spinner = function(context) { img.transition() .style('opacity', 0); }); - } + }; }; diff --git a/js/id/ui/tag_reference.js b/js/id/ui/tag_reference.js index b2c90dbf4..34780c0d0 100644 --- a/js/id/ui/tag_reference.js +++ b/js/id/ui/tag_reference.js @@ -60,5 +60,5 @@ iD.ui.TagReference = function(entity, tag) { .attr('href', 'http://wiki.openstreetmap.org/wiki/' + docs.title) .text(t('inspector.reference')); }); - } + }; };