Skip to content

Instantly share code, notes, and snippets.

@xar
Created March 24, 2015 13:28
Show Gist options
  • Save xar/cc0860e208f4b3d838a5 to your computer and use it in GitHub Desktop.
Save xar/cc0860e208f4b3d838a5 to your computer and use it in GitHub Desktop.
height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
cheight = $('.main-content').innerHeight();
if (height < cheight) {
height = cheight;
}
setHeight = function(height) {
$('.menu-block').css({
"min-height": height
});
return true;
};
setHeight(height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment