diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-01-14 17:01:28 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-01-14 17:01:28 +0100 |
commit | 9a89e39367dda0d39a618c9672df59b95b7eb3a8 (patch) | |
tree | 2aa026666b61e730ca53071e2e04554be0a30be3 /js | |
parent | 5359da0b06e92b52406d69a0feec01803f7118f4 (diff) | |
download | fosdem-2018-presentation-9a89e39367dda0d39a618c9672df59b95b7eb3a8.tar fosdem-2018-presentation-9a89e39367dda0d39a618c9672df59b95b7eb3a8.tar.gz |
only read textContent for aria callout #1100
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index e5576ed..65ac29f 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -3216,7 +3216,7 @@ element.classList.remove( 'current-fragment' ); // Announce the fragments one by one to the Screen Reader - dom.statusDiv.innerHTML = element.textContent; + dom.statusDiv.textContent = element.textContent; if( i === index ) { element.classList.add( 'current-fragment' ); |