mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +02:00
MDL-78885 aria: Fix pressing Home and End on editable comboboxes
This commit is contained in:
parent
e0d2a3924e
commit
535bfb3052
6 changed files with 4 additions and 16 deletions
2
theme/boost/amd/build/aria.min.js
vendored
2
theme/boost/amd/build/aria.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -313,9 +313,9 @@ const comboboxFix = () => {
|
|||
if (editable && !next) {
|
||||
next = options[options.length - 1];
|
||||
}
|
||||
} else if (trigger == 'Home') {
|
||||
} else if (trigger == 'Home' && !editable) {
|
||||
next = options[0];
|
||||
} else if (trigger == 'End') {
|
||||
} else if (trigger == 'End' && !editable) {
|
||||
next = options[options.length - 1];
|
||||
} else if ((trigger == ' ' && !editable) || trigger == 'Enter') {
|
||||
e.preventDefault();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue