mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-07 03:41:33 +00:00
Extract all graphics from iD sprite, reassemble with svg-sprite
All iD sprite graphics are now prefixed with `iD-` Also includes support for sending the preset logos to taginfo
This commit is contained in:
@@ -52,7 +52,7 @@ export function uiCommitChanges(context) {
|
||||
itemsEnter
|
||||
.each(function(d) {
|
||||
d3_select(this)
|
||||
.call(svgIcon('#icon-' + d.entity.geometry(d.graph), 'pre-text ' + d.changeType));
|
||||
.call(svgIcon('#iD-icon-' + d.entity.geometry(d.graph), 'pre-text ' + d.changeType));
|
||||
});
|
||||
|
||||
itemsEnter
|
||||
@@ -124,7 +124,7 @@ export function uiCommitChanges(context) {
|
||||
}
|
||||
|
||||
linkEnter
|
||||
.call(svgIcon('#icon-load', 'inline'))
|
||||
.call(svgIcon('#iD-icon-load', 'inline'))
|
||||
.append('span')
|
||||
.text(t('commit.download_changes'));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user