mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
MDL-26332 cannot type Enter into a textarea in a quiz.
This was breaking the essay question type.
This commit is contained in:
parent
f7d843d167
commit
b729648032
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ M.core_question_engine.init_form = function(Y, form) {
|
|||
Y.one(form).setAttribute('autocomplete', 'off');
|
||||
Y.on('key', function (e) {
|
||||
if (!e.target.test('a') && !e.target.test('input[type=submit]') &&
|
||||
!e.target.test('input[type=img]')) {
|
||||
!e.target.test('input[type=img]') && !e.target.test('textarea')) {
|
||||
e.preventDefault();
|
||||
}
|
||||
}, form, 'press:13');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue