Merge pull request #207 from JDonadio/fix/reverse-timeline

Reverse timeline
This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-28 11:58:23 -03:00 committed by GitHub
commit c311c978d3
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,
description: actionDescriptions['broadcasted'],
});
$scope.actionList.reverse();
};
$scope.showCommentPopup = function() {

View File

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