The page currently calls event.preventDefault() on every keydown event, making the page unaccessible for keyboard users, as tabbing between links is prevented by that call.
Consider only calling preventDefault() in the cases covered in the switch. I can submit a patch in a few days once my finals are over :)
The page currently calls
event.preventDefault()
on everykeydown
event, making the page unaccessible for keyboard users, as tabbing between links is prevented by that call.Consider only calling
preventDefault()
in the cases covered in theswitch
. I can submit a patch in a few days once my finals are over :)