33 lines
948 B
JavaScript
33 lines
948 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('wordsController',
|
|
function($rootScope, $scope, $timeout, profileService, go, gettext, confirmDialog, notification) {
|
|
|
|
var msg = gettext('Are you sure you want to delete the backup words?');
|
|
var successMsg = gettext('Backup words deleted');
|
|
|
|
this.done = function() {
|
|
$rootScope.$emit('Local/BackupDone');
|
|
};
|
|
|
|
this.delete = function() {
|
|
var fc = profileService.focusedClient;
|
|
confirmDialog.show(msg,function(ok){
|
|
if (ok) {
|
|
fc.clearMnemonic();
|
|
profileService.updateCredentialsFC(function() {
|
|
notification.success(successMsg);
|
|
go.walletHome();
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
var fc = profileService.focusedClient;
|
|
var words = fc.getMnemonic();
|
|
|
|
if (words)
|
|
this.mnemonicWords = words.split(' ');
|
|
|
|
this.mnemonicHasPassphrase = fc.mnemonicHasPassphrase();
|
|
});
|