From 9712cc9ad64cda09306834250c8770d1e81b2856 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Mon, 7 Jan 2019 14:43:46 +0100 Subject: [PATCH] whitespace --- js/reveal.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/reveal.js b/js/reveal.js index f01358e..2442a5c 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1765,13 +1765,16 @@ // Change the .stretch element height to 0 in order find the height of all // the other elements element.style.height = '0px'; + // In Overview mode, the parent (.slide) height is set of 700px. // Restore it temporarily to its natural height. element.parentNode.style.height = 'auto'; + newHeight = height - element.parentNode.offsetHeight; // Restore the old height, just in case element.style.height = oldHeight + 'px'; + // Clear the parent (.slide) height. .removeProperty works in IE9+ element.parentNode.style.removeProperty('height');