guy 7 years ago
parent
commit
bd480eeac1
  1. 6
      bi/core.js
  2. 6
      docs/core.js
  3. 6
      src/core/wrapper/layout.js

6
bi/core.js

@ -11202,7 +11202,7 @@ BI.Layout = BI.inherit(BI.Widget, {
this.options.items = newItems;
this._children = newChildren;
BI.each(deleted, function (i, c) {
c.destroy();
c._destroy();
});
},
@ -11227,7 +11227,7 @@ BI.Layout = BI.inherit(BI.Widget, {
} else {
w.element.prependTo(this._getWrapper());
}
del.destroy();
del._destroy();
w._mount();
},
@ -11314,7 +11314,7 @@ BI.Layout = BI.inherit(BI.Widget, {
}
o.items.splice(items.length);
BI.each(deleted, function (i, w) {
w.destroy();
w._destroy();
})
} else if (items.length > o.items.length) {
for (i = o.items.length; i < items.length; i++) {

6
docs/core.js

@ -19587,7 +19587,7 @@ BI.Layout = BI.inherit(BI.Widget, {
this.options.items = newItems;
this._children = newChildren;
BI.each(deleted, function (i, c) {
c.destroy();
c._destroy();
});
},
@ -19612,7 +19612,7 @@ BI.Layout = BI.inherit(BI.Widget, {
} else {
w.element.prependTo(this._getWrapper());
}
del.destroy();
del._destroy();
w._mount();
},
@ -19699,7 +19699,7 @@ BI.Layout = BI.inherit(BI.Widget, {
}
o.items.splice(items.length);
BI.each(deleted, function (i, w) {
w.destroy();
w._destroy();
})
} else if (items.length > o.items.length) {
for (i = o.items.length; i < items.length; i++) {

6
src/core/wrapper/layout.js

@ -252,7 +252,7 @@ BI.Layout = BI.inherit(BI.Widget, {
this.options.items = newItems;
this._children = newChildren;
BI.each(deleted, function (i, c) {
c.destroy();
c._destroy();
});
},
@ -277,7 +277,7 @@ BI.Layout = BI.inherit(BI.Widget, {
} else {
w.element.prependTo(this._getWrapper());
}
del.destroy();
del._destroy();
w._mount();
},
@ -364,7 +364,7 @@ BI.Layout = BI.inherit(BI.Widget, {
}
o.items.splice(items.length);
BI.each(deleted, function (i, w) {
w.destroy();
w._destroy();
})
} else if (items.length > o.items.length) {
for (i = o.items.length; i < items.length; i++) {

Loading…
Cancel
Save