Override jdots tab content height calculation for pixelegg

This commit is contained in:
Nathan Gray 2013-11-18 23:50:53 +00:00
parent d332c0e167
commit 88bcc85ad9

View File

@ -49,4 +49,11 @@ egw_LAB.wait(function() {
}
});
// Override jdots height calcluation
egw_fw.prototype.getIFrameHeight = function()
{
$header = $j(this.tabsUi.appHeaderContainer);
var height = $j(this.sidemenuDiv).height()-this.tabsUi.appHeaderContainer.outerHeight() - this.tabsUi.appHeader.outerHeight();
return height;
}
});