changed request history to 50

This commit is contained in:
cubedro 2015-04-28 16:06:53 +03:00
parent ec83b07f14
commit 735cd103b0
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ History.prototype.getHistoryRequestInterval = function()
return null;
var max = _.min(this._items, 'height').height - 1;
var min = max - Math.min(100, (MAX_HISTORY - this._items.length + 1)) + 1;
var min = max - Math.min(50, (MAX_HISTORY - this._items.length + 1)) + 1;
return {max: max, min: min};
}