1 function getAutoHeight() { 2 var height = $("body").height() - $('#toolbar_title').height() - 12; 3 return height; 4 }
1 $(window).resize(function() { 2 height = getAutoHeight(); 3 });
1 function getAutoHeight() { 2 var height = $("body").height() - $('#toolbar_title').height() - 12; 3 return height; 4 }
1 $(window).resize(function() { 2 height = getAutoHeight(); 3 });