add missing semicolons

This commit is contained in:
samanpwbb
2014-09-16 15:16:26 -04:00
parent e721e93a31
commit 3c9ec76b33
2 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ iD.modes.SelectImage = function (context) {
context.surface().selectAll('.image.point')
.classed('selected', function(d) {
return d === datum;
})
});
context.container()
.select('#mapillaryImage')
.classed('temp', false);

View File

@@ -41,9 +41,9 @@ iD.ui.ImageView = function (context) {
.attr('target', '_blank')
.attr('src', 'http://mapillary.com/map/im/KEY'.replace('KEY', key));
wrapLink.append('span')
.attr('class','icon icon-pre-text out-link')
.attr('class','icon icon-pre-text out-link');
wrapLink.append('span')
.text(t('mapillary.view_on_mapillary'))
.text(t('mapillary.view_on_mapillary'));
};
return imageView;