Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ASSETS-25755): [Info and Relationship-Dynamic Media-Properties]: Screen reader is not narrating the Displayed Popup message after submitting the data #305

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion coral-component-toast/src/scripts/Toast.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,11 @@ const Toast = Decorator(class extends BaseOverlay(BaseComponent(HTMLElement)) {

// Set the role attribute to alert or status depending on
// the variant so that the element turns into a live region
// aria-live set to assertlive after 1.5 seconds so screen readers will announce the message once the property is updated
this.setAttribute('role', this._variant);
this.setAttribute('aria-live', 'polite');
setTimeout(() =>{
this.setAttribute('aria-live', 'assertive');
}, 1500);
}

/**
Expand Down