Fix wrong call of _clearBoundsCache() on child.

Closes #426.
This commit is contained in:
Jürg Lehni 2014-03-20 17:20:10 +01:00
parent e0b3361f01
commit 7233c82084

View file

@ -1023,7 +1023,7 @@ var Item = Base.extend(Callback, /** @lends Item# */{
// the cache for this child's children is not valid anymore,
// that propagates up the DOM tree.
if (child !== item && child._boundsCache)
child._clearBoundsCache();
Item._clearBoundsCache(child);
}
item._boundsCache = undefined;
}