whitespace
This commit is contained in:
parent
65938f388b
commit
9712cc9ad6
@ -1765,13 +1765,16 @@
|
|||||||
// Change the .stretch element height to 0 in order find the height of all
|
// Change the .stretch element height to 0 in order find the height of all
|
||||||
// the other elements
|
// the other elements
|
||||||
element.style.height = '0px';
|
element.style.height = '0px';
|
||||||
|
|
||||||
// In Overview mode, the parent (.slide) height is set of 700px.
|
// In Overview mode, the parent (.slide) height is set of 700px.
|
||||||
// Restore it temporarily to its natural height.
|
// Restore it temporarily to its natural height.
|
||||||
element.parentNode.style.height = 'auto';
|
element.parentNode.style.height = 'auto';
|
||||||
|
|
||||||
newHeight = height - element.parentNode.offsetHeight;
|
newHeight = height - element.parentNode.offsetHeight;
|
||||||
|
|
||||||
// Restore the old height, just in case
|
// Restore the old height, just in case
|
||||||
element.style.height = oldHeight + 'px';
|
element.style.height = oldHeight + 'px';
|
||||||
|
|
||||||
// Clear the parent (.slide) height. .removeProperty works in IE9+
|
// Clear the parent (.slide) height. .removeProperty works in IE9+
|
||||||
element.parentNode.style.removeProperty('height');
|
element.parentNode.style.removeProperty('height');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user