Issue #1333292 by mgifford: Fixed Screen-reader users receive no info about file upload status / success.

8.0.x
webchick 2013-01-29 20:19:31 -08:00
parent a63c6cbc8a
commit 0af77c244f
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ Drupal.file = Drupal.file || {
'%filename': this.value.replace('C:\\fakepath\\', ''),
'%extensions': extensionPattern.replace(/\|/g, ', ')
});
$(this).closest('div.form-managed-file').prepend('<div class="messages error file-upload-js-error">' + error + '</div>');
$(this).closest('div.form-managed-file').prepend('<div class="messages error file-upload-js-error" aria-live="polite">' + error + '</div>');
this.value = '';
}
}