Get node-dependent osmChange working

This commit is contained in:
Tom MacWright
2012-11-28 15:13:31 -05:00
parent a9a16415a6
commit 80ea085f35
7 changed files with 67 additions and 24 deletions
+5 -3
View File
@@ -29,9 +29,11 @@ iD.commit = function() {
li.append('strong').text(function(d) {
return d.type + ' ';
});
li.append('span').text(function(d) {
return iD.Util.friendlyName(d);
});
li.append('span')
.text(function(d) {
return iD.Util.friendlyName(d);
})
.attr('title', iD.Util.tagText);
body.append('textarea')
.attr('class', 'changeset-comment')