Merge pull request #4975 from matrix-org/t3chguy/a11y-toolbar

Create a generic ARIA toolbar component
This commit is contained in:
Michael Telatynski
2020-07-16 12:41:05 +01:00
committed by GitHub
4 changed files with 90 additions and 12 deletions

View File

@@ -233,6 +233,9 @@ export class ContextMenu extends React.PureComponent<IProps, IState> {
switch (ev.key) {
case Key.TAB:
case Key.ESCAPE:
// close on left and right arrows too for when it is a context menu on a <Toolbar />
case Key.ARROW_LEFT:
case Key.ARROW_RIGHT:
this.props.onFinished();
break;
case Key.ARROW_UP: