Fix dynheight case when there is no space between dynheight & items below

This commit is contained in:
Nathan Gray 2013-04-10 15:17:18 +00:00
parent 8834d86818
commit bb44a6ce26

View File

@ -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);
}