mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
@@ -432,7 +432,7 @@ export function uiIntroArea(context, reveal) {
|
||||
});
|
||||
|
||||
reveal('.entity-editor-pane',
|
||||
helpHtml('intro.areas.describe_playground', { button: icon('#iD-icon-close', 'inline') }),
|
||||
helpHtml('intro.areas.describe_playground', { button: { html: icon('#iD-icon-close', 'inline') } }),
|
||||
{ duration: 300 }
|
||||
);
|
||||
|
||||
|
||||
@@ -296,7 +296,7 @@ export function uiIntroBuilding(context, reveal) {
|
||||
|
||||
timeout(function() {
|
||||
reveal('.entity-editor-pane',
|
||||
helpHtml('intro.buildings.close', { button: icon('#iD-icon-close', 'inline') })
|
||||
helpHtml('intro.buildings.close', { button: { html: icon('#iD-icon-close', 'inline') } })
|
||||
);
|
||||
}, 500);
|
||||
|
||||
@@ -624,7 +624,7 @@ export function uiIntroBuilding(context, reveal) {
|
||||
|
||||
timeout(function() {
|
||||
reveal('.entity-editor-pane',
|
||||
helpHtml('intro.buildings.close', { button: icon('#iD-icon-close', 'inline') })
|
||||
helpHtml('intro.buildings.close', { button: { html: icon('#iD-icon-close', 'inline') } })
|
||||
);
|
||||
}, 500);
|
||||
|
||||
|
||||
@@ -338,7 +338,7 @@ export function uiIntroLine(context, reveal) {
|
||||
|
||||
timeout(function() {
|
||||
reveal('.entity-editor-pane',
|
||||
helpHtml('intro.lines.name_road', { button: icon('#iD-icon-close', 'inline') }),
|
||||
helpHtml('intro.lines.name_road', { button: { html: icon('#iD-icon-close', 'inline') } }),
|
||||
{ tooltipClass: 'intro-lines-name_road' }
|
||||
);
|
||||
}, 500);
|
||||
|
||||
@@ -253,7 +253,7 @@ export function uiIntroPoint(context, reveal) {
|
||||
});
|
||||
|
||||
reveal('.entity-editor-pane',
|
||||
helpHtml('intro.points.add_close', { button: icon(href, 'inline') })
|
||||
helpHtml('intro.points.add_close', { button: { html: icon(href, 'inline') } })
|
||||
);
|
||||
|
||||
function continueTo(nextStep) {
|
||||
@@ -350,7 +350,7 @@ export function uiIntroPoint(context, reveal) {
|
||||
|
||||
timeout(function() {
|
||||
reveal('.entity-editor-pane',
|
||||
helpHtml('intro.points.update_close', { button: icon('#iD-icon-close', 'inline') })
|
||||
helpHtml('intro.points.update_close', { button: { html: icon('#iD-icon-close', 'inline') } })
|
||||
);
|
||||
}, 500);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user