Skip to content
Snippets Groups Projects

Resolve "Dialogtitel sind nicht als Überschrift gekennzeichnet und nicht modal"

Merged Thomas Hackl requested to merge issue-4038 into main
All threads resolved!
Files
2
@@ -386,7 +386,12 @@ Dialog.show = function(content, options = {}) {
.before(element);
}
$(this).parent().find('.ui-dialog-title').attr('title', options.title);
$(this).parent().find('.ui-dialog-title').attr({
title: options.title,
role: 'heading',
'aria-level': 2
});
$(this).parents('.studip-dialog').attr('aria-modal', 'true');
instance.open = true;
// Execute scripts
Loading