MDL-26332 cannot type Enter into a textarea in a quiz.

This was breaking the essay question type.
This commit is contained in:
Tim Hunt 2011-02-09 13:03:05 +00:00
parent f7d843d167
commit b729648032

View file

@ -15,7 +15,7 @@ M.core_question_engine.init_form = function(Y, form) {
Y.one(form).setAttribute('autocomplete', 'off'); Y.one(form).setAttribute('autocomplete', 'off');
Y.on('key', function (e) { Y.on('key', function (e) {
if (!e.target.test('a') && !e.target.test('input[type=submit]') && 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(); e.preventDefault();
} }
}, form, 'press:13'); }, form, 'press:13');