diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-06-18 10:50:00 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-06-18 10:50:00 +0200 |
commit | e4761d3a37a5fc3a9e11e22ae12435843ca04416 (patch) | |
tree | 1d70d48d1c75f4b9f60062e8c8c6cd0efb6fc29f /js | |
parent | 8f24561878598b49b630bb871b2e30402227f549 (diff) | |
download | fosdem-2018-presentation-e4761d3a37a5fc3a9e11e22ae12435843ca04416.tar fosdem-2018-presentation-e4761d3a37a5fc3a9e11e22ae12435843ca04416.tar.gz |
only allow text in aria status div
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 75e88e4..6d98679 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1918,7 +1918,7 @@ } // Announce the current slide contents, for screen readers - dom.statusDiv.innerHTML = currentSlide.textContent; + dom.statusDiv.textContent = currentSlide.textContent; updateControls(); updateProgress(); |