2016-06-10 15:16:02 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('copayApp.controllers').controller('confirmationController', function($scope) {
|
|
|
|
|
|
|
|
|
|
$scope.ok = function() {
|
|
|
|
|
$scope.loading = true;
|
|
|
|
|
$scope.okAction();
|
2016-06-16 19:28:37 -03:00
|
|
|
$scope.confirmationModal.hide();
|
2016-06-10 15:16:02 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$scope.cancel = function() {
|
|
|
|
|
$scope.confirmationModal.hide();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
});
|