Restored production setting for page size.
This commit is contained in:
parent
a5a1d3edb6
commit
babdc8a13b
1 changed files with 2 additions and 2 deletions
|
|
@ -7,8 +7,8 @@
|
||||||
.factory('walletHistoryService', walletHistoryService);
|
.factory('walletHistoryService', walletHistoryService);
|
||||||
|
|
||||||
function walletHistoryService(configService, storageService, lodash, $log, txFormatService) {
|
function walletHistoryService(configService, storageService, lodash, $log, txFormatService) {
|
||||||
//var PAGE_SIZE = 50;
|
var PAGE_SIZE = 50;
|
||||||
var PAGE_SIZE = 20; // For dev only
|
//var PAGE_SIZE = 20; // For dev only
|
||||||
// How much to overlap on each end of the page, for mitigating inconsistent sort order.
|
// How much to overlap on each end of the page, for mitigating inconsistent sort order.
|
||||||
var PAGE_OVERLAP_FRACTION = 0.2;
|
var PAGE_OVERLAP_FRACTION = 0.2;
|
||||||
var PAGE_OVERLAP = Math.floor(PAGE_SIZE * PAGE_OVERLAP_FRACTION);
|
var PAGE_OVERLAP = Math.floor(PAGE_SIZE * PAGE_OVERLAP_FRACTION);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue