15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('confirmationController', function($scope) {
|
|
|
|
$scope.ok = function() {
|
|
$scope.loading = true;
|
|
$scope.okAction();
|
|
$scope.confirmationModal.hide();
|
|
};
|
|
|
|
$scope.cancel = function() {
|
|
$scope.confirmationModal.hide();
|
|
};
|
|
|
|
});
|