Wallet/src/js/controllers/modals/bitpayCardConfirmation.js
Gustavo Maximiliano Cortez 894c206204
Using state.go
2016-08-23 12:21:48 -03:00

16 lines
386 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('bitpayCardConfirmationController', function($scope, $timeout, $state, bitpayCardService) {
$scope.ok = function() {
bitpayCardService.logout(function() {
$state.go('bitpayCard.main');
});
$scope.cancel();
};
$scope.cancel = function() {
$scope.bitpayCardConfirmationModal.hide();
};
});