17 lines
286 B
JavaScript
17 lines
286 B
JavaScript
window.setHeight = function()
|
|
{
|
|
codeHeight = parent.$('#editWin').height();
|
|
$('.panel').height(codeHeight);
|
|
}
|
|
|
|
window.openInEditWin = function(url)
|
|
{
|
|
parent.$('#editWin').attr('src', url);
|
|
};
|
|
|
|
setHeight();
|
|
window.addEventListener('resize', function()
|
|
{
|
|
setHeight();
|
|
});
|