Fix white space.

This commit is contained in:
Jürg Lehni 2011-11-12 15:50:53 +01:00
parent 07839cf683
commit ea689faa43

View file

@ -1003,7 +1003,7 @@ var Item = this.Item = Base.extend(/** @lends Item# */{
if (!this._children) if (!this._children)
return null; return null;
from = from || 0; from = from || 0;
to = Base.pick(to, this._children.length); to = Base.pick(to, this._children.length);
var removed = this._children.splice(from, to - from); var removed = this._children.splice(from, to - from);
for (var i = removed.length - 1; i >= 0; i--) for (var i = removed.length - 1; i >= 0; i--)
removed[i]._remove(true, false); removed[i]._remove(true, false);