Add docs about OSM API, finish implementing postNoteUpdate

`postNoteUpdate` can hangle status changes and comment additions
(I named it that to be like `putChangeset`)

Also renamed `user` to `loadUser` to be consistent with other calls
This commit is contained in:
Bryan Housel
2018-07-12 23:43:37 -04:00
parent 19560ebc90
commit 645cc790a3
2 changed files with 139 additions and 95 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ export function uiNoteComments() {
});
Object.keys(uids).forEach(function(uid) {
osm.user(uid, function(err, user) {
osm.loadUser(uid, function(err, user) {
if (!user || !user.image_url) return;
selection.selectAll('.comment-avatar.user-' + uid)