mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Fix dynheight case when there is no space between dynheight & items below
This commit is contained in:
parent
8834d86818
commit
bb44a6ce26
@ -128,7 +128,7 @@ var et2_dynheight = Class.extend({
|
||||
$j(_node).children().each(function() {
|
||||
var $this = $j(this);
|
||||
var top = $this.offset().top;
|
||||
if (this != self.innerNode[0] && top > _bottom)
|
||||
if (this != self.innerNode[0] && top >= _bottom)
|
||||
{
|
||||
self.bottomNodes.push($this);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user