Actions
Bug #104171
openMake context menu fire 'click' on keyboard spacebar press
Status:
New
Priority:
Should have
Assignee:
-
Category:
Backend JavaScript
Target version:
-
Start date:
2024-06-21
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
UX, accessibility
Complexity:
easy
Is Regression:
Sprint Focus:
On Location Sprint
Description
The context-menu does not fire 'click' on spacebar press.
Technical background¶
event.key
for spacebar is 'event.code
for spacebar is 'Space
'
https://www.toptal.com/developers/keycode/space
/* current implementation */
switch (event.key) {
case 'Enter':
case 'Space':
target.click();
break;
}
/* must become */
switch (event.key) {
case 'Enter':
case ' ':
target.click();
break;
}
Actions