Merge pull request #1 from hyperion-hyn/fix-items-order
Fix items order
This commit is contained in:
commit
5a85b718e0
@ -228,7 +228,7 @@ History.prototype._save = function(block)
|
||||
{
|
||||
this._items.unshift(block);
|
||||
|
||||
this._items = _.sortBy( this._items, 'height', false );
|
||||
this._items = _.orderBy( this._items, 'height', "desc" );
|
||||
|
||||
if(this._items.length > MAX_HISTORY)
|
||||
{
|
||||
@ -591,7 +591,7 @@ History.prototype.getCharts = function()
|
||||
if(this._callback !== null)
|
||||
{
|
||||
var chartHistory = _( this._items )
|
||||
.sortBy( 'height', false )
|
||||
.orderBy( 'height', "desc" )
|
||||
// .filter(function (item)
|
||||
// {
|
||||
// return item.block.trusted;
|
||||
|
Loading…
Reference in New Issue
Block a user