mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 17:52:55 +00:00
add missing semicolons
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user