fix removed tooltops from re-appearing on keyboard focus, closes #9873

This commit is contained in:
Martin Raifer
2025-04-13 18:40:52 +02:00
parent ea0d15e69e
commit 6a88fe3d40
2 changed files with 5 additions and 0 deletions
+3
View File
@@ -42,11 +42,14 @@ _Breaking developer changes, which may affect downstream projects or sites that
#### :camera: Street-Level
#### :white_check_mark: Validation
#### :bug: Bugfixes
* Fix removed tooltips from re-appearing when using keyboard navigation ([#9873])
#### :earth_asia: Localization
#### :hourglass: Performance
#### :mortar_board: Walkthrough / Help
#### :hammer: Development
[#9873]: https://github.com/openstreetmap/iD/issues/9873
# v2.33.0
##### 2025-04-09
+2
View File
@@ -105,6 +105,8 @@ export function uiPopover(klass) {
.on(_pointerPrefix + 'leave.popover', null)
.on(_pointerPrefix + 'up.popover', null)
.on(_pointerPrefix + 'down.popover', null)
.on('focus.popover', null)
.on('blur.popover', null)
.on('click.popover', null)
.attr('title', function() {
return this.getAttribute('data-original-title') || this.getAttribute('title');