requeriments to send

This commit is contained in:
Gabriel Bazán 2016-09-21 11:47:19 -03:00
commit cb64e57e45
6 changed files with 112 additions and 63 deletions

View file

@ -10,7 +10,6 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
$scope.init = function() {
$scope.loading = null;
$scope.hideSlider = false;
$scope.copayerId = $scope.wallet.credentials.copayerId;
$scope.isShared = $scope.wallet.credentials.n > 1;
$scope.canSign = $scope.wallet.canSign() || $scope.wallet.isPrivKeyExternal();
@ -50,7 +49,6 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
};
$scope.$on('accepted', function(event) {
$scope.hideSlider = true;
$scope.sign();
});