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