Author |
|
tigertech Newbie
Joined: 21 November 2019
Online Status: Offline Posts: 23
|
Posted: 26 October 2022 at 10:17am | IP Logged
|
|
|
One of our users reported that Afterlogic Webmail isn't accessible to ARIA-based screen reader software.
This can be seen on, say, a Mac by turning on System Preferences > Accessibility > Voice Control > Enable Voice Control > Overlay "Item Numbers". You'll see that there are no numbered clickable items for many things, including important things like the "New Message" button. This makes it unusable for users who rely on this feature.
This mostly seems to happen because these "buttons" are in "<span>" items, which aren't recognized as clickable by default under ARIA. For example, the "New Message" button is in:
span href="javascript: void(0)" class="button command enable" id="selenium_new_message_button" data-bind="command: $parent.bigButtonCommand"
Simply changing the "span" to "a" makes ARIA recognize it as a clickable item and work properly:
a href="javascript: void(0)" class="button command enable" id="selenium_new_message_button" data-bind="command: $parent.bigButtonCommand"
As with many accessibility things, it looks like this would all be easy relatively easy to fix, but it just hasn't been really tested. Accessibility is becoming more and more important, and it would be great if this could be improved: both Mac and windows have built-in ARIA accessibility options now (like the Mac option described above) so it can easily be tested without extra software.
Thanks!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 26 October 2022 at 10:40am | IP Logged
|
|
|
Thank you for your message.
If you believe other users would benefit from such a feature, feel free to post a feature request at:
https://afterlogic.uservoice.com/forums/932335-webmail-pro
We use that resource when developing product's roadmap, so if the feature gets a good number of votes, there's a better chance of it getting implemented.
--
Regards,
Igor, Afterlogic Support
|
Back to Top |
|
|