only announce current fragment to screen readers

master
Hakim El Hattab 2020-03-13 08:58:59 +01:00
parent 92e3a3680c
commit 8709a41979
1 changed files with 3 additions and 3 deletions

View File

@ -197,10 +197,10 @@ export default class Fragments {
el.classList.add( 'visible' );
el.classList.remove( 'current-fragment' );
// Announce the fragments one by one to the Screen Reader
this.Reveal.announceStatus( this.Reveal.getStatusText( el ) );
if( i === index ) {
// Announce the fragments one by one to the Screen Reader
this.Reveal.announceStatus( this.Reveal.getStatusText( el ) );
el.classList.add( 'current-fragment' );
this.Reveal.slideContent.startEmbeddedContent( el );
}