|
@@ -1771,7 +1771,7 @@ var Reveal = (function(){
|
|
|
slides[index].classList.add( 'present' );
|
|
|
slides[index].removeAttribute( 'hidden' );
|
|
|
slides[index].removeAttribute( 'aria-hidden' );
|
|
|
- dom.statusDiv.innerHTML = slides[index].innerHTML;
|
|
|
+ dom.statusDiv.innerHTML = slides[index].textContent;
|
|
|
|
|
|
|
|
|
|
|
@@ -2424,7 +2424,7 @@ var Reveal = (function(){
|
|
|
element.classList.add( 'visible' );
|
|
|
element.classList.remove( 'current-fragment' );
|
|
|
|
|
|
- dom.statusDiv.innerHTML = element.innerHTML;
|
|
|
+ dom.statusDiv.innerHTML = element.textContent;
|
|
|
|
|
|
if( i === index ) {
|
|
|
element.classList.add( 'current-fragment' );
|