philbuchanan / Accordion-Shortcodes

A WordPress plugin that adds a few shortcodes to allow for accordion dropdowns.
https://wordpress.org/plugins/accordion-shortcodes/
16 stars 10 forks source link

changed keydown functions to keyup for a11y #79

Closed CarlyGerard closed 5 years ago

CarlyGerard commented 5 years ago

@philbuchanan In my last major PR, you had asked why the keyboard event was a keyup event and not a keydown event. At the time I had no better answer than that's what I've seen my coworkers use as the keyboard event.

Now, I've learned that keyup can satisfy the Pointer Cancellation Success Criteria in WCAG 2.1 (slide 24 of 44 in presentation).

This PR makes that slight adjustment from keydown to keyup.