guy 6 years ago
parent
commit
1d32c712da
  1. 20
      dist/bundle.js
  2. 22
      dist/bundle.min.js
  3. 20
      dist/core.js
  4. 20
      dist/fineui.js
  5. 22
      dist/fineui.min.js
  6. 20
      dist/fineui_without_jquery_polyfill.js
  7. 2
      dist/utils.min.js
  8. 20
      src/core/wrapper/layout.js

20
dist/bundle.js vendored

@ -14976,10 +14976,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
});
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
prependItems: function (items) {
@ -14995,10 +14997,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
}
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
getValue: function () {

22
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

20
dist/core.js vendored

@ -14976,10 +14976,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
});
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
prependItems: function (items) {
@ -14995,10 +14997,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
}
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
getValue: function () {

20
dist/fineui.js vendored

@ -15218,10 +15218,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
});
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
prependItems: function (items) {
@ -15237,10 +15239,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
}
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
getValue: function () {

22
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

20
dist/fineui_without_jquery_polyfill.js vendored

@ -14722,10 +14722,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
});
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
prependItems: function (items) {
@ -14741,10 +14743,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
}
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
getValue: function () {

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

20
src/core/wrapper/layout.js

@ -307,10 +307,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
});
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().append(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
prependItems: function (items) {
@ -326,10 +328,12 @@ BI.Layout = BI.inherit(BI.Widget, {
added.push(w);
fragment.appendChild(w.element[0]);
}
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
if (this._isMounted) {
this._getWrapper().prepend(fragment);
BI.each(added, function (i, w) {
w._mount();
});
}
},
getValue: function () {

Loading…
Cancel
Save