Add user method to osm service, _userCache, user parser

This commit is contained in:
Bryan Housel
2018-07-04 03:20:16 -04:00
parent 73ee5c2fc9
commit 6f1dc12f99
2 changed files with 73 additions and 26 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ export function uiNoteEditor(context) {
var avatar = commentEnter
.append('div')
.attr('class', 'comment-avatar');
.attr('class', function(d) { return 'comment-avatar user-' + d.uid; });
avatar
.call(svgIcon('#iD-icon-avatar', 'comment-avatar-icon'));