From: Marcel Werk Date: Wed, 20 May 2020 18:13:38 +0000 (+0200) Subject: Close dialog button could not be pressed via enter key X-Git-Tag: 5.2.7~55 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=69905b161c3937679e7568e7547faf961d84c921;p=GitHub%2FWoltLab%2FWCF.git Close dialog button could not be pressed via enter key --- 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);