diff options
author | Hakim El Hattab | 2013-05-20 00:29:34 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-05-20 00:29:34 -0400 |
commit | 8b355eaba0aa1fc51c8284b02f3f9a6f7ab64410 (patch) | |
tree | c5dcbc3045f6ee1a5f9b8a08974dc7d3aa0f003e /js/reveal.js | |
parent | de551634c676831a1c0c9b2acd23f86230683d58 (diff) |
support vertical align of slides with absolute children
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 55 |
1 files changed, 35 insertions, 20 deletions
diff --git a/js/reveal.js b/js/reveal.js index d4532ac..776cac9 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -536,6 +536,41 @@ var Reveal = (function(){ } /** + * Retrieves the height of the given element by looking + * at the position and height of its immediate children. + */ + function getAbsoluteHeight( element ) { + + var height = 0; + + if( element ) { + var absoluteChildren = 0; + + toArray( element.childNodes ).forEach( function( child ) { + + if( typeof child.offsetTop === 'number' && child.style ) { + // Count # of abs children + if( child.style.position === 'absolute' ) { + absoluteChildren += 1; + } + + height = Math.max( height, child.offsetTop + child.offsetHeight ); + } + + } ); + + // If there are no absolute children, use offsetHeight + if( absoluteChildren === 0 ) { + height = element.offsetHeight; + } + + } + + return height; + + } + + /** * Causes the address bar to hide on mobile devices, * more vertical space ftw. */ @@ -614,26 +649,6 @@ var Reveal = (function(){ } /** - * Retrieves the height of the given element by looking - * at the position and height of its immediate children. - */ - function getAbsoluteHeight( element ) { - - var height = 0; - - if( element ) { - - toArray( element.childNodes ).forEach( function( child ) { - height = Math.max( height, child.offsetTop + child.offsetHeight ); - } ); - - } - - return height; - - } - - /** * Bind preview frame links. */ function enablePreviewLinks( selector ) { |