From 364a3f9845a41f72c399ca1b602a4f96281965af Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Mon, 2 Mar 2015 12:11:05 +0100 Subject: [PATCH] code format --- js/reveal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/reveal.js b/js/reveal.js index a1a91d0..3edd301 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -4055,7 +4055,7 @@ // focus the document.body to ensure we can use keyboard shortcuts if( isHidden === false && document.activeElement !== document.body ) { // Not all elements support .blur() - SVGs among them. - if (typeof document.activeElement.blur === 'function') { + if( typeof document.activeElement.blur === 'function' ) { document.activeElement.blur(); } document.body.focus();