Skip to content

Commit

Permalink
Update alert time out for aria-hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
denscollo committed Oct 18, 2019
1 parent 62ac2c1 commit 93cbd51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/client/src/ui/a11y/ariaAlertService.ts
Expand Up @@ -52,8 +52,8 @@ class AriaAlertService {
document.body.appendChild(alert);

setTimeout(() => {
document.body.removeChild(alert);
}, 1000);
alert.setAttribute('aria-hidden', 'true');
}, 5000);
}
}

Expand Down

0 comments on commit 93cbd51

Please sign in to comment.