Dailer 6 years ago
parent
commit
b11f4d4b8f
  1. 5
      dist/base.js
  2. 5
      dist/bundle.ie.js
  3. 16
      dist/bundle.ie.min.js
  4. 5
      dist/bundle.js
  5. 4
      dist/bundle.min.js
  6. 5
      dist/fineui.ie.js
  7. 16
      dist/fineui.ie.min.js
  8. 5
      dist/fineui.js
  9. 4
      dist/fineui.min.js
  10. 5
      dist/fineui_without_jquery_polyfill.js
  11. 2
      dist/utils.min.js
  12. 5
      src/base/combination/loader.js

5
dist/base.js vendored

@ -4132,8 +4132,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -4160,7 +4159,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

5
dist/bundle.ie.js vendored

@ -39218,8 +39218,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -39246,7 +39245,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

16
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/bundle.js vendored

@ -39622,8 +39622,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -39650,7 +39649,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/fineui.ie.js vendored

@ -39460,8 +39460,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -39488,7 +39487,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

16
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/fineui.js vendored

@ -39864,8 +39864,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -39892,7 +39891,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/fineui_without_jquery_polyfill.js vendored

@ -27473,8 +27473,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -27501,7 +27500,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

5
src/base/combination/loader.js

@ -170,8 +170,7 @@ BI.Loader = BI.inherit(BI.Widget, {
if (arguments.length === 0) {
throw new Error("arguments can not be null!!!");
}
self._populate.apply(self, arguments);
self.button_group.populate.apply(self.button_group, arguments);
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
@ -198,7 +197,7 @@ BI.Loader = BI.inherit(BI.Widget, {
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
arguments.length !== 0 && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

Loading…
Cancel
Save