Bug #104171
closedMake context menu fire 'click' on keyboard spacebar press
100%
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;
}
Updated by Riccardo De Contardi 8 months ago
- Tags changed from UX,Accessibility to UX accessibility
Updated by Riccardo De Contardi 8 months ago
- Tags changed from UX accessibility to UX, accessibility
Updated by Riccardo De Contardi 7 months ago
- Complexity set to easy
- Sprint Focus set to On Location Sprint
Updated by Ayke Halder 6 months ago
- Related to Epic #91518: Keyboard usage in the TYPO3 backend added
Updated by Gerrit Code Review 8 days ago
- Status changed from New to Under Review
Patch set 13 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 14 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 15 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 16 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 17 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 18 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 19 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 20 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 7 days ago
Patch set 21 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/87887
Updated by Gerrit Code Review 6 days ago
Patch set 1 for branch 13.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/88025
Updated by Benjamin Kott 6 days ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 1ba69b73e98543ff1b6a4635cc9781878e279424.