Account for (optional) footer in wrapper height calc.

pull/62/head
Tim Morgan 2014-06-01 23:58:19 -05:00
parent 35ba9268b6
commit 1d900be948
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ $(function() {
**/ **/
function _fix() { function _fix() {
//Get window height and the wrapper height //Get window height and the wrapper height
var height = $(window).height() - $("body > .header").height(); var height = $(window).height() - $("body > .header").height() - ($("body > .footer").outerHeight() || 0);
$(".wrapper").css("min-height", height + "px"); $(".wrapper").css("min-height", height + "px");
var content = $(".wrapper").height(); var content = $(".wrapper").height();
//If the wrapper height is greater than the window //If the wrapper height is greater than the window