Wallet/src/js/controllers/modals/confirmation.js
Gustavo Maximiliano Cortez 610c116d7a
Fix UI delete wallets
2016-06-16 19:28:37 -03:00

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();
};
});