Browse Source

交换下顺序

es6
Fay 5 years ago
parent
commit
19463fb2b0
  1. 2
      src/base/list/listview.js

2
src/base/list/listview.js

@ -51,9 +51,9 @@ BI.ListView = BI.inherit(BI.Widget, {
var width = self.element.width(),
height = self.element.height();
if (width !== lastWidth || height !== lastHeight) {
self._calculateBlocksToRender();
lastWidth = width;
lastHeight = height;
self._calculateBlocksToRender();
}
});
},

Loading…
Cancel
Save