2016-05-26 10:40:20 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
2016-05-26 15:02:00 -03:00
|
|
|
angular.module('copayApp.controllers').controller('payproController', function($scope) {
|
2016-05-26 10:40:20 -03:00
|
|
|
var self = $scope.self;
|
|
|
|
|
|
|
|
|
|
$scope.cancel = function() {
|
|
|
|
|
$scope.payproModal.hide();
|
|
|
|
|
};
|
|
|
|
|
});
|