mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-19 17:43:39 +00:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
iD.ui.Attribution = function(context) {
|
|
return function(selection) {
|
|
selection.append('span')
|
|
.text('imagery');
|
|
|
|
selection
|
|
.append('span')
|
|
.attr('class', 'provided-by');
|
|
}
|
|
};
|