From 69905b161c3937679e7568e7547faf961d84c921 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 20 May 2020 20:13:38 +0200 Subject: [PATCH] Close dialog button could not be pressed via enter key --- wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Dialog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Dialog.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Dialog.js index 453cd68954..f3e57b4582 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Dialog.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Dialog.js @@ -378,6 +378,7 @@ define( if (options.closable) { var closeButton = elCreate('a'); closeButton.className = 'dialogCloseButton jsTooltip'; + closeButton.href = '#'; elAttr(closeButton, 'role', 'button'); elAttr(closeButton, 'tabindex', '0'); elAttr(closeButton, 'title', options.closeButtonLabel); -- 2.20.1