mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
Better height calculation
This commit is contained in:
parent
9741f1c7d5
commit
65e97beeed
@ -71,7 +71,12 @@ egw_LAB.wait(function() {
|
|||||||
egw_fw.prototype.getIFrameHeight = function()
|
egw_fw.prototype.getIFrameHeight = function()
|
||||||
{
|
{
|
||||||
$header = $j(this.tabsUi.appHeaderContainer);
|
$header = $j(this.tabsUi.appHeaderContainer);
|
||||||
var height = $j(this.sidemenuDiv).height()-this.tabsUi.appHeaderContainer.outerHeight() - this.tabsUi.appHeader.outerHeight();
|
var content = $j(this.tabsUi.activeTab.contentDiv);
|
||||||
|
//var height = $j(this.sidemenuDiv).height()-this.tabsUi.appHeaderContainer.outerHeight() - this.tabsUi.appHeader.outerHeight();
|
||||||
|
var height = $j(this.sidemenuDiv).height()
|
||||||
|
- $header.outerHeight() - $j(this.tabsUi.contHeaderDiv).outerHeight() - (content.outerHeight(true) - content.height())
|
||||||
|
// Not sure where this comes from...
|
||||||
|
+ 5;
|
||||||
return height;
|
return height;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user