fix: remove alert role from the loading indicator (#2238)
...so it no longer interferes with screen readers. Fixes "Loading more" alert creates extraneous verbosity for screen reader users Fixes #2226
This commit is contained in:
parent
53803db5be
commit
fa41fe7649
|
@ -1,7 +1,6 @@
|
||||||
<div class="loading-footer {shown ? '' : 'hidden'}">
|
<div class="loading-footer {shown ? '' : 'hidden'}">
|
||||||
<div class="loading-wrapper {showLoading ? 'shown' : ''}"
|
<div class="loading-wrapper {showLoading ? 'shown' : ''}"
|
||||||
aria-hidden={!showLoading}
|
aria-hidden={!showLoading}
|
||||||
role="alert"
|
|
||||||
>
|
>
|
||||||
<!-- Sapper's mousemove event listener schedules style recalculations for the loading spinner in
|
<!-- Sapper's mousemove event listener schedules style recalculations for the loading spinner in
|
||||||
Chrome because it's always animating, even when hidden. So disable animations when not visible
|
Chrome because it's always animating, even when hidden. So disable animations when not visible
|
||||||
|
|
Loading…
Reference in a new issue