guy 7 years ago
parent
commit
80450f5b33
  1. 2
      bi/base.js
  2. 2
      dist/base.js
  3. 2
      dist/bundle.js
  4. 2
      dist/bundle.min.js
  5. 2
      src/base/list/listview.js

2
bi/base.js

@ -15673,7 +15673,7 @@ BI.ListView = BI.inherit(BI.Widget, {
if (items && this.options.items !== items) {
this.restore();
}
this._populate();
this._populate(items);
},
destroyed: function () {

2
dist/base.js vendored

@ -15673,7 +15673,7 @@ BI.ListView = BI.inherit(BI.Widget, {
if (items && this.options.items !== items) {
this.restore();
}
this._populate();
this._populate(items);
},
destroyed: function () {

2
dist/bundle.js vendored

@ -41548,7 +41548,7 @@ BI.ListView = BI.inherit(BI.Widget, {
if (items && this.options.items !== items) {
this.restore();
}
this._populate();
this._populate(items);
},
destroyed: function () {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
src/base/list/listview.js

@ -99,7 +99,7 @@ BI.ListView = BI.inherit(BI.Widget, {
if (items && this.options.items !== items) {
this.restore();
}
this._populate();
this._populate(items);
},
destroyed: function () {

Loading…
Cancel
Save