Browse Source

无jira任务,路径覆盖不全,如果populate方法没传参内部button_group不应当populate

es6
Dailer 6 years ago
parent
commit
2175b45aef
  1. 6
      dist/base.js
  2. 6
      dist/bundle.ie.js
  3. 6
      dist/bundle.ie.min.js
  4. 6
      dist/bundle.js
  5. 16
      dist/bundle.min.js
  6. 6
      dist/fineui.ie.js
  7. 6
      dist/fineui.ie.min.js
  8. 6
      dist/fineui.js
  9. 16
      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

@ -4135,7 +4135,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -4155,11 +4155,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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

@ -39221,7 +39221,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -39241,11 +39241,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/bundle.js vendored

@ -39625,7 +39625,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -39645,11 +39645,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui.ie.js vendored

@ -39463,7 +39463,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -39483,11 +39483,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui.js vendored

@ -39867,7 +39867,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -39887,11 +39887,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui_without_jquery_polyfill.js vendored

@ -27476,7 +27476,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -27496,11 +27496,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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

@ -173,7 +173,7 @@ BI.Loader = BI.inherit(BI.Widget, {
self.populate.apply(self, arguments);
o.onLoaded();
}]);
return;
return false;
}
this.options.items = items;
this.times = 1;
@ -193,11 +193,11 @@ BI.Loader = BI.inherit(BI.Widget, {
this.prev.invisible();
}
}
return true;
},
populate: function () {
this._populate.apply(this, arguments);
arguments.length !== 0 && 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