21 lines
575 B
JavaScript
21 lines
575 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('backupWarningController', function($scope, $state, $ionicPopup, profileService) {
|
|
|
|
$scope.openPopup = function() {
|
|
var backupWarningPopup = $ionicPopup.show({
|
|
templateUrl: "views/includes/backupWarningPopup.html",
|
|
scope: $scope,
|
|
});
|
|
|
|
$scope.close = function() {
|
|
backupWarningPopup.close();
|
|
var wallet = profileService.getWallets()[0];
|
|
$state.go('wallet.backup', {
|
|
walletId: wallet.credentials.walletId,
|
|
fromOnboarding: true
|
|
})
|
|
};
|
|
}
|
|
|
|
});
|