From 51d16f753cf9be15c47e515527dd7f0685cc037f Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Wed, 24 May 2023 15:20:48 +0100 Subject: [PATCH] New: Aira modal and role attributes for action chooser --- js/dataTables.autoFill.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/dataTables.autoFill.js b/js/dataTables.autoFill.js index 469becc..f6b8cea 100755 --- a/js/dataTables.autoFill.js +++ b/js/dataTables.autoFill.js @@ -96,7 +96,10 @@ var AutoFill = function( dt, opts ) background: $('
'), /** @type {jQuery} Fill type chooser */ - list: $('
'+this.s.dt.i18n('autoFill.info', '')+'
'), + list: $('
'+this.s.dt.i18n('autoFill.info', '')+'
') + .attr('aria-modal', true) + .attr('role', 'dialog') + .append('
'), /** @type {jQuery} DataTables scrolling container */ dtScroll: null,