Fix function reference.

This commit is contained in:
Andy Phillipson 2017-06-08 15:01:11 -04:00
parent b8a13dda26
commit b566813860
No known key found for this signature in database
GPG Key ID: D813A67D567D6C88
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
}
var curTx = $scope.txHistory[index];
var prevTx = $scope.txHistory[index - 1];
return !createdDuringSameMonth(curTx, prevTx);
return !$scope.createdDuringSameMonth(curTx, prevTx);
};
$scope.isLastInGroup = function(index) {