From ee98f13dd97ca3d2e08e04a0bf89ab3225d07f66 Mon Sep 17 00:00:00 2001 From: S Anand Date: Thu, 2 Apr 2015 21:04:00 +0530 Subject: [PATCH] display .stretch images in overview mode --- js/reveal.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/reveal.js b/js/reveal.js index 65ac29f..16d9e0f 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1195,10 +1195,15 @@ // 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'); return newHeight; }