From e4761d3a37a5fc3a9e11e22ae12435843ca04416 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab <hakim.elhattab@gmail.com>
Date: Wed, 18 Jun 2014 10:50:00 +0200
Subject: [PATCH] only allow text in aria status div

---
 js/reveal.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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();
-- 
GitLab