fix in no-mnemonics

This commit is contained in:
Matias Alejo Garcia 2015-09-18 10:27:36 -03:00
parent 930c07b338
commit 337dfcf290
1 changed files with 6 additions and 5 deletions

View File

@ -7,12 +7,12 @@ angular.module('copayApp.controllers').controller('wordsController',
var successMsg = gettext('Backup words deleted');
this.done = function() {
$rootScope.$emit('Local/BackupDone');
$rootScope.$emit('Local/BackupDone');
};
this.delete = function() {
var fc = profileService.focusedClient;
confirmDialog.show(msg,function(ok){
confirmDialog.show(msg, function(ok) {
if (ok) {
fc.clearMnemonic();
profileService.updateCredentialsFC(function() {
@ -26,9 +26,10 @@ angular.module('copayApp.controllers').controller('wordsController',
var fc = profileService.focusedClient;
var words = fc.getMnemonic();
if (words)
if (words) {
this.mnemonicWords = words.split(/[\u3000\s]+/);
this.mnemonicHasPassphrase = fc.mnemonicHasPassphrase();
this.useIdeograms = words.indexOf("\u3000") >= 0;
}
this.mnemonicHasPassphrase = fc.mnemonicHasPassphrase();
this.useIdeograms = words.indexOf("\u3000") >= 0;
});