You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The calendar widget fails accessibility tests using the AXE chrome extension. This seems to be because the element with role=grid doesn't have children with role=row (or rowgroup). This is patched by adding the following jQuery...
$('.mbsc-cal-row').attr('role', 'row');
But should probably be added to core
The text was updated successfully, but these errors were encountered:
The calendar widget fails accessibility tests using the AXE chrome extension. This seems to be because the element with role=grid doesn't have children with role=row (or rowgroup). This is patched by adding the following jQuery...
$('.mbsc-cal-row').attr('role', 'row');
But should probably be added to core
The text was updated successfully, but these errors were encountered: