guy 7 years ago
parent
commit
e41f1d39c0
  1. 2
      dist/base.js
  2. 2
      dist/bundle.js
  3. 76
      dist/bundle.min.js
  4. 12
      dist/fineui.js
  5. 76
      dist/fineui.min.js
  6. 2
      src/base/combination/switcher.js

2
dist/base.js vendored

@ -4694,7 +4694,7 @@ BI.Switcher = BI.inherit(BI.Widget, {
_initSwitcher: function () {
this.switcher = BI.createWidget(this.options.el, {
value: o.value
value: this.options.value
});
},

2
dist/bundle.js vendored

@ -30567,7 +30567,7 @@ BI.Switcher = BI.inherit(BI.Widget, {
_initSwitcher: function () {
this.switcher = BI.createWidget(this.options.el, {
value: o.value
value: this.options.value
});
},

76
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/fineui.js vendored

@ -32261,7 +32261,7 @@ BI.Switcher = BI.inherit(BI.Widget, {
_initSwitcher: function () {
this.switcher = BI.createWidget(this.options.el, {
value: o.value
value: this.options.value
});
},
@ -60982,12 +60982,20 @@ BI.Table = BI.inherit(BI.Widget, {
},
_empty: function () {
this.scrollBottomRight && this.scrollBottomRight.destroy();
this.topLeft && this.topLeft.destroy();
this.topRight && this.topRight.destroy();
this.bottomLeft && this.bottomLeft.destroy();
this.bottomRight && this.bottomRight.destroy();
},
populate: function (items, header) {
this.options.items = items || [];
if (header) {
this.options.header = header;
}
this.empty();
this._empty();
if (this.options.isNeedFreeze) {
this._createFreezeTable();
} else {

76
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/base/combination/switcher.js

@ -124,7 +124,7 @@ BI.Switcher = BI.inherit(BI.Widget, {
_initSwitcher: function () {
this.switcher = BI.createWidget(this.options.el, {
value: o.value
value: this.options.value
});
},

Loading…
Cancel
Save