diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-06-09 11:36:28 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-06-09 11:36:28 +0200 |
commit | 0a58df8390030288e6764b9a52d6f2c26b12a455 (patch) | |
tree | ea52bf0a4c87b968680a7ca7a59bcc25b762e6aa /js | |
parent | 943b6ef37e951a90a52c3496ace681c3633662b4 (diff) | |
download | fosdem-2018-presentation-0a58df8390030288e6764b9a52d6f2c26b12a455.tar fosdem-2018-presentation-0a58df8390030288e6764b9a52d6f2c26b12a455.tar.gz |
don't trim aria status
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 fdaa928..cbfa859 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2966,7 +2966,7 @@ element.classList.remove( 'current-fragment' ); // Announce the fragments one by one to the Screen Reader - dom.statusDiv.innerHTML = element.textContent.trim(); + dom.statusDiv.innerHTML = element.textContent; if( i === index ) { element.classList.add( 'current-fragment' ); |