Files
iD/js/id/ui/attribution.js
Tom MacWright 3f7d78edfb jshint fixes
2013-02-26 20:01:41 -05:00

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');
};
};