guy 7 years ago
parent
commit
ffbf2d9378
  1. 2
      dist/base.js
  2. 2
      dist/bundle.js
  3. 6
      dist/bundle.min.js
  4. 2
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 2
      src/base/table/table.js

2
dist/base.js vendored

@ -33425,7 +33425,7 @@ BI.Table = BI.inherit(BI.Widget, {
_empty: function () {
this.scrollBottomRight && this.scrollBottomRight.destroy();
BI.each(this.partitions._children, function (name, child) {
BI.each(this.partitions && this.partitions._children, function (name, child) {
child && child.destroy();
});
},

2
dist/bundle.js vendored

@ -59419,7 +59419,7 @@ BI.Table = BI.inherit(BI.Widget, {
_empty: function () {
this.scrollBottomRight && this.scrollBottomRight.destroy();
BI.each(this.partitions._children, function (name, child) {
BI.each(this.partitions && this.partitions._children, function (name, child) {
child && child.destroy();
});
},

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.js vendored

@ -61173,7 +61173,7 @@ BI.Table = BI.inherit(BI.Widget, {
_empty: function () {
this.scrollBottomRight && this.scrollBottomRight.destroy();
BI.each(this.partitions._children, function (name, child) {
BI.each(this.partitions && this.partitions._children, function (name, child) {
child && child.destroy();
});
},

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/base/table/table.js

@ -1584,7 +1584,7 @@ BI.Table = BI.inherit(BI.Widget, {
_empty: function () {
this.scrollBottomRight && this.scrollBottomRight.destroy();
BI.each(this.partitions._children, function (name, child) {
BI.each(this.partitions && this.partitions._children, function (name, child) {
child && child.destroy();
});
},

Loading…
Cancel
Save