wire actual month to group label component
This commit is contained in:
parent
45a842cbd7
commit
74a15b824a
3 changed files with 7 additions and 1 deletions
|
|
@ -149,6 +149,11 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
$scope.txHistory = $scope.completeTxHistory.slice(0, (currentTxHistoryPage + 1) * HISTORY_SHOW_LIMIT);
|
||||
$scope.txHistoryShowMore = $scope.completeTxHistory.length > $scope.txHistory.length;
|
||||
}
|
||||
console.log('$scope.completeTxHistory', $scope.completeTxHistory);
|
||||
};
|
||||
|
||||
$scope.getDate = function(txCreated) {
|
||||
return new Date(txCreated * 1000);
|
||||
};
|
||||
|
||||
$scope.showMore = function() {
|
||||
|
|
|
|||
|
|
@ -64,6 +64,7 @@
|
|||
}
|
||||
|
||||
#walletDetails {
|
||||
background: #F8F8F9;
|
||||
.bar-header {
|
||||
border: 0;
|
||||
background: none;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue