Fix jshint errors

This commit is contained in:
Tom MacWright
2013-03-26 12:20:51 -04:00
parent 14f1d85e1e
commit 93104c268f
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -15,5 +15,5 @@ iD.ui.Spinner = function(context) {
img.transition()
.style('opacity', 0);
});
}
};
};

View File

@@ -60,5 +60,5 @@ iD.ui.TagReference = function(entity, tag) {
.attr('href', 'http://wiki.openstreetmap.org/wiki/' + docs.title)
.text(t('inspector.reference'));
});
}
};
};