remove unnecessary semicolons (jshint)

This commit is contained in:
Bryan Housel
2014-06-20 18:04:49 -04:00
parent c316f87c6f
commit 71d44d561e

View File

@@ -61,7 +61,7 @@ iD.ui.Scale = function(context) {
}
return scale;
};
}
function update(selection) {
// choose loc1, loc2 along bottom of viewport (near where the scale will be drawn)
@@ -77,7 +77,7 @@ iD.ui.Scale = function(context) {
.attr('x', scale.px + 8)
.attr('y', tickHeight)
.text(scale.text);
};
}
return function(selection) {
var g = selection.append('svg')