This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Set `aria-live` manually here as we cannot use Swiper's navigation since we use custom arrows. | |
*/ | |
function setAriaLive(el: HTMLDivElement | null, value: string) { | |
if (!el) return; | |
el.innerHTML = ''; | |
setTimeout(() => { | |
el.innerHTML = `<div aria-live="polite" aria-atomic="true" className="visually-hidden">${value}</div>`; | |
}, 100); | |
} |
OlderNewer