Document vertical centering breaking backcompat
authorDan Dascalescu <ddascalescu+github@gmail.com>
Tue, 13 Nov 2012 09:47:02 +0000 (01:47 -0800)
committerDan Dascalescu <ddascalescu+github@gmail.com>
Tue, 13 Nov 2012 09:47:02 +0000 (01:47 -0800)
commitdfa98a11380ef2c45eaf1fda93145813f6cf25bd
treefd9c53b9305464dd0e1ebfca494fed5a925020aa
parent4c8938029db648d58b0e1e65e5fba70a8ff1d1ee
Document vertical centering breaking backcompat

Essentially, slides have variable height now. This is not normally visible, but with transitions that have a non-transparent background, like `cube` or `page`, it is:

http://lab.hakim.se/reveal-js/?transition=cube

Before, slides had a fixed height, which means that presentations designed with that assumption in mind will look very different now.

Another aspect that I bumped into is that I used the slide's height to dynamically size images to fill the remainder of the space from the heading to the footer, like this (stripped to the essence):

          bigImage.style.height = section.offsetHeight - bigImage.offsetTop + 'px';

Alternatively, is there an easy way to restore the previous functionality?
README.md