Closed
Description
screenHeight: function() {
if( module.can.fit() ) {
$body.css('height', '');
}
else {
module.debug('Modal is taller than page content, resizing page height');
$body
.css('height', module.cache.height + (settings.padding * 2) )
;
}
},
This code runs on modal.show
but no code sets the body height back to '' when the modal closes
repro:
have modal thats bigger than body, show modal, close modal. Height still set on body.