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

6
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 false;
@ -4160,8 +4159,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

6
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 false;
@ -39246,8 +39245,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && 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

6
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 false;
@ -39650,8 +39649,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

12
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
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 false;
@ -39488,8 +39487,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && 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

6
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 false;
@ -39892,8 +39891,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

12
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
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 false;
@ -27501,8 +27500,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && 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

6
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 false;
@ -198,8 +197,7 @@ BI.Loader = BI.inherit(BI.Widget, {
},
populate: function () {
var refresh = this._populate.apply(this, arguments);
refresh && this.button_group.populate.apply(this.button_group, arguments);
this._populate.apply(this, arguments) && this.button_group.populate.apply(this.button_group, arguments);
},
setNotSelectedValue: function () {

Loading…
Cancel
Save