Accessible front-end code reviews for UI developers
Reviewing code in Github (or alternative source control system) to give developers guidance on how to fix issues in the code they have created.
Reviews are always written with solutions included and in a helpful way, not in a condescending tone and never rude. We are there to educate and help and you do that with kindness.
Examples of code review comments
The predeceding screenshot, shows a code review (or a pull request) in Github. The user 'a11yiseverything' has entered the following suggestion after seeing a developer has used both aria-live="polite"
and role="alert"
on the same HTML element.
FYI (For your information)
aria-live="polite"
androle="alert"
are not compatible.aria-live="polite"
reads this out when it gets a chance e.g. a gap in user activity whereas,role="alert"
(same asaria-live="assertive"
) stops everything and reads it out loud.