12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
window.setHeight = function()
|
|
{
|
|
codeHeight = parent.$('#editWin').height();
|
|
$('.panel').height(codeHeight);
|
|
}
|
|
|
|
setHeight();
|
|
window.addEventListener('resize', function()
|
|
{
|
|
setHeight();
|
|
});
|