Skip to content

Commit

Permalink
New: Aira modal and role attributes for action chooser
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJard committed May 24, 2023
1 parent 8bd7a84 commit 51d16f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/dataTables.autoFill.js
Expand Up @@ -96,7 +96,10 @@ var AutoFill = function( dt, opts )
background: $('<div class="dt-autofill-background"/>'),

/** @type {jQuery} Fill type chooser */
list: $('<div class="dt-autofill-list">'+this.s.dt.i18n('autoFill.info', '')+'<div class="dt-autofill-list-items" /></div>'),
list: $('<div class="dt-autofill-list">'+this.s.dt.i18n('autoFill.info', '')+'</div>')
.attr('aria-modal', true)
.attr('role', 'dialog')
.append('<div class="dt-autofill-list-items"></div>'),

/** @type {jQuery} DataTables scrolling container */
dtScroll: null,
Expand Down

0 comments on commit 51d16f7

Please sign in to comment.