20 lines
454 B
JavaScript
20 lines
454 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('coinbaseConfirmationController', function($scope, $timeout, coinbaseService, applicationService) {
|
|
|
|
$scope.ok = function() {
|
|
|
|
coinbaseService.logout($scope.network, function() {
|
|
|
|
$timeout(function() {
|
|
applicationService.restart();
|
|
}, 1000);
|
|
});
|
|
$scope.cancel();
|
|
};
|
|
|
|
$scope.cancel = function() {
|
|
$scope.coinbaseConfirmationModal.hide();
|
|
};
|
|
|
|
});
|