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

4
dist/base.js vendored

@ -4158,8 +4158,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

4
dist/bundle.ie.js vendored

@ -39244,8 +39244,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

14
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -39648,8 +39648,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.ie.js vendored

@ -39486,8 +39486,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

14
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -39890,8 +39890,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui_without_jquery_polyfill.js vendored

@ -27499,8 +27499,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
src/base/combination/loader.js

@ -196,8 +196,8 @@ BI.Loader = BI.inherit(BI.Widget, {
}
},
populate: function (items) {
this._populate(items);
populate: function () {
this._populate.apply(this, arguments);
this.button_group.populate.apply(this.button_group, arguments);
},

Loading…
Cancel
Save