mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Fix issue where dynamic tooltips titles might not get updated
This commit is contained in:
@@ -57,6 +57,7 @@ export function uiTooltip(klass) {
|
||||
headingSelect.enter()
|
||||
.append('div')
|
||||
.attr('class', 'tooltip-heading')
|
||||
.merge(headingSelect)
|
||||
.html(heading);
|
||||
|
||||
var textSelect = selection
|
||||
@@ -69,6 +70,7 @@ export function uiTooltip(klass) {
|
||||
textSelect.enter()
|
||||
.append('div')
|
||||
.attr('class', 'tooltip-text')
|
||||
.merge(textSelect)
|
||||
.html(text);
|
||||
|
||||
var keyhintWrap = selection
|
||||
|
||||
Reference in New Issue
Block a user