From b83bc7db6847c1bdb05b0eb054b26ef325fefb9e Mon Sep 17 00:00:00 2001 From: Marco Zehe Date: Fri, 14 Feb 2020 11:12:41 +0100 Subject: [PATCH] Always speak the full text of the typing indicator when it updates. By default, aria-live regions only speak partial updates. However in the case of the typing indicator, if it goes from one person typing to several, and back, the updated text would only be spoken in fragments by screen readers. Adding the aria-atomic attribute with a value of true makes screen readers always speak the full update for this tile, making the experience much nicer. Signed-off-by: Marco Zehe --- src/components/views/rooms/WhoIsTypingTile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/rooms/WhoIsTypingTile.js b/src/components/views/rooms/WhoIsTypingTile.js index e6ffb24621..9683d00e51 100644 --- a/src/components/views/rooms/WhoIsTypingTile.js +++ b/src/components/views/rooms/WhoIsTypingTile.js @@ -213,7 +213,7 @@ export default createReactClass({ } return ( -
  • +
  • { this._renderTypingIndicatorAvatars(usersTyping, this.props.whoIsTypingLimit) }