IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
瀏覽代碼

Small improvements to manifest worker-based approach.

master
父節點
當前提交
9fd043a568
共有 1 個文件被更改,包括 11 次插入3 次删除
  1. +11
    -3
      frontend/src/js/component/wb-collection-content.js

+ 11
- 3
frontend/src/js/component/wb-collection-content.js 查看文件

@@ -94,9 +94,12 @@ class WBCollectionContent extends Component {
});
}
prom_1 = prom_1.then(() => this.setState({
'mode': 'browsingReady'
}));
prom_1 = prom_1.then(() => {
this.setState({
'mode': 'browsingReady'
});
this.prepareRows();
});
return prom_1;
});
@@ -122,6 +125,11 @@ class WBCollectionContent extends Component {
}
prepareRows(listing) {
if (listing)
this.state.listing = listing;
else
listing = this.state.listing;
let { manifestReader, mode } = this.state;
let { collectionPath, page, itemsPerPage } = this.props;
let { arvHost, arvToken } = this.props.app.state;


Loading…
取消
儲存