Merge pull request #5423 from JDonadio/bug/timeline

Fix timeline item order
This commit is contained in:
Gustavo Maximiliano Cortez 2017-01-10 10:51:08 -03:00 committed by GitHub
commit dafd46c3a2
4 changed files with 10 additions and 2 deletions

View file

@ -56,6 +56,10 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
by: action.copayerName
});
});
$timeout(function() {
$scope.actionList.reverse();
}, 10);
};
function checkPaypro() {

View file

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