diff --git a/src/js/controllers/walletDetails.js b/src/js/controllers/walletDetails.js index 6fd7a8b30..aeec92930 100644 --- a/src/js/controllers/walletDetails.js +++ b/src/js/controllers/walletDetails.js @@ -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() { diff --git a/src/sass/views/walletDetails.scss b/src/sass/views/walletDetails.scss index 1644d63c8..009614072 100644 --- a/src/sass/views/walletDetails.scss +++ b/src/sass/views/walletDetails.scss @@ -64,6 +64,7 @@ } #walletDetails { + background: #F8F8F9; .bar-header { border: 0; background: none; diff --git a/www/views/walletDetails.html b/www/views/walletDetails.html index de748befe..027d008d5 100644 --- a/www/views/walletDetails.html +++ b/www/views/walletDetails.html @@ -176,7 +176,7 @@
-
June
+
{{getDate(btx.time) | date:'MMMM'}}