aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-08-18 17:56:41 -0400
committerHakim El Hattab2013-08-18 17:56:41 -0400
commit0748b683350b2bd633090f51a8e97b154671d2c8 (patch)
tree6181002dc4c2afb1e05ab87a1c9f4433170f62d6 /js/reveal.js
parent04c4fa49b896e63b6679023dd16c93494af342eb (diff)
renamed .remaining-height to .stretch #244 #490 #561
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 257c8c2..46da532 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -1001,6 +1001,9 @@ var Reveal = (function(){
slideHeight = config.height,
slidePadding = 20; // TODO Dig this out of DOM
+ // Layout the contents of the slides
+ layoutSlideContents( config.width, config.height, slidePadding );
+
// Slide width may be a percentage of available width
if( typeof slideWidth === 'string' && /%$/.test( slideWidth ) ) {
slideWidth = parseInt( slideWidth, 10 ) / 100 * availableWidth;
@@ -1014,9 +1017,6 @@ var Reveal = (function(){
dom.slides.style.width = slideWidth + 'px';
dom.slides.style.height = slideHeight + 'px';
- // Layout the contents of the slides
- layoutSlideContents( config.width, config.height, slidePadding );
-
// Determine scale of content to fit within available space
scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
@@ -1073,8 +1073,8 @@ var Reveal = (function(){
*/
function layoutSlideContents( width, height, padding ) {
- // Handle sizing of elements with the 'remaining-height' class
- toArray( dom.slides.querySelectorAll( 'section > .remaining-height' ) ).forEach( function( element ) {
+ // Handle sizing of elements with the 'stretch' class
+ toArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {
// Determine how much vertical space we can use
var remainingHeight = getRemainingHeight( element, ( height - ( padding * 2 ) ) );