Add ARIA label to form text editor without label

This commit is contained in:
Michael
2020-10-04 18:31:49 +01:00
committed by GitHub
parent c5f18fb136
commit b8e6157738
8 changed files with 11 additions and 6 deletions

View File

@@ -62,6 +62,10 @@ KB.component('text-editor', function (containerElement, options) {
textareaElement.attr('required', 'required');
}
if (options.ariaLabel) {
textareaElement.attr('aria-label', options.ariaLabel);
}
// Order is important for IE11 (especially for the placeholder)
var textWrapper = KB.dom(containerElement).find('script');
textareaElement.html(textWrapper.innerHTML);