7 lines
188 B
JavaScript
7 lines
188 B
JavaScript
$(function()
|
|
{
|
|
var showHeight = $(window).height() - $('#header').height() - $('#footer').height() - 20;
|
|
$('#editWin').height(showHeight);
|
|
$('#extendWin').height(showHeight);
|
|
});
|