mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-25 01:24:05 +02:00
Get node-dependent osmChange working
This commit is contained in:
+5
-3
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user