reverse timeline

This commit is contained in:
Javier 2016-09-28 10:42:25 -03:00
commit 570b16a81a
2 changed files with 4 additions and 0 deletions

View file

@ -73,6 +73,8 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
time: $scope.btx.time, time: $scope.btx.time,
description: actionDescriptions['broadcasted'], description: actionDescriptions['broadcasted'],
}); });
$scope.actionList.reverse();
}; };
$scope.showCommentPopup = function() { $scope.showCommentPopup = function() {

View file

@ -49,6 +49,8 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
by: action.copayerName by: action.copayerName
}); });
}); });
$scope.actionList.reverse();
}; };
$scope.$on('accepted', function(event) { $scope.$on('accepted', function(event) {