mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Avoid infinite heights in case there is nothing below
This commit is contained in:
parent
d8ae1a63a4
commit
499c9f3c22
@ -97,7 +97,7 @@ var et2_dynheight = Class.extend(
|
||||
}
|
||||
|
||||
// Get the height of the bottom container
|
||||
var bh = bmaxBot - bminTop;
|
||||
var bh = Math.max(0,bmaxBot - bminTop);
|
||||
|
||||
// Calculate the new height of the inner container
|
||||
var w = this.innerNode.width();
|
||||
|
Loading…
Reference in New Issue
Block a user