Browse Source

Merge pull request #1042 in VISUAL/fineui from ~KIRA/fineui:master to master

* commit 'f271d2198289471ea6ff61bc93f1d8b1fd6c861d':
  无jira任务:调整下add items的顺序
es6
windy 5 years ago
parent
commit
11f984e37a
  1. 2
      src/case/loader/loader.list.js

2
src/case/loader/loader.list.js

@ -100,8 +100,8 @@ BI.ListLoader = BI.inherit(BI.Widget, {
addItems: function (items) {
this.count += items.length;
if (BI.isObject(this.next)) {
this.options.items = this.options.items.concat(items);
if (this.hasNext()) {
this.options.items = this.options.items.concat(items);
this.next.setLoaded();
} else {
this.next.setEnd();

Loading…
Cancel
Save