From 9240c96339b26989f060c57c61a2677e2f1e502e Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 18 Jun 2014 14:35:48 +0200 Subject: Improve accessibility on attachments list: use custom tabindex attribute + add aria-label for meaningful voice output on delete icons --- program/steps/mail/compose.inc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'program/steps/mail/compose.inc') diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 6f1267d7d..a3c8a8a64 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -1524,7 +1524,9 @@ function rcmail_compose_attachment_list($attrib) 'href' => "#delete", 'title' => $RCMAIL->gettext('delete'), 'onclick' => sprintf("return %s.command('remove-attachment','rcmfile%s', this)", rcmail_output::JS_OBJECT_NAME, $id), - 'class' => 'delete' + 'class' => 'delete', + 'tabindex' => $attrib['tabindex'] ?: '0', + 'aria-label' => $RCMAIL->gettext('delete') . ' ' . $a_prop['name'], ), $button ) . rcube::Q($a_prop['name']) @@ -1550,6 +1552,12 @@ function rcmail_compose_attachment_list($attrib) $OUTPUT->set_env('attachments', $jslist); $OUTPUT->add_gui_object('attachmentlist', $attrib['id']); + // put tabindex value into data-tabindex attribute + if (isset($attrib['tabindex'])) { + $attrib['data-tabindex'] = $attrib['tabindex']; + unset($attrib['tabindex']); + } + return html::tag('ul', $attrib, $out, html::$common_attrib); } -- cgit v1.2.3