Merge pull request #5354 from gabrielbazan7/feat/ppdesign

improve design on payment protocol view
This commit is contained in:
Gustavo Maximiliano Cortez 2016-12-27 17:03:17 -03:00 committed by GitHub
commit 65278a4e93
3 changed files with 52 additions and 52 deletions

View file

@ -435,6 +435,10 @@ angular.module('copayApp.controllers').controller('confirmController', function(
});
};
$scope.cancel = function() {
$scope.payproModal.hide();
};
$scope.approve = function(onSendStatusChange) {
var wallet = $scope.wallet;

View file

@ -1,9 +0,0 @@
'use strict';
angular.module('copayApp.controllers').controller('payproController', function($scope) {
var self = $scope.self;
$scope.cancel = function() {
$scope.payproModal.hide();
};
});