This commit is contained in:
Mikunj 2019-04-15 10:42:29 +10:00
parent b2ecb87462
commit 40ab727b12
2 changed files with 4 additions and 3 deletions

View file

@ -1826,7 +1826,8 @@
},
"seedViewTitle": {
"message": "Please save the seed below in a safe location. They can be used to restore your account if you lose access or migrate to a new device.",
"message":
"Please save the seed below in a safe location. They can be used to restore your account if you lose access or migrate to a new device.",
"description": "The title shown when the user views their seeds"
},

View file

@ -20,7 +20,7 @@
this.showSeedView(false);
this.initPasswordHash();
this.$('#password').bind('keyup', (event) => this.onKeyup(event));
this.$('#password').bind('keyup', event => this.onKeyup(event));
},
events: {
'click .ok': 'close',
@ -52,7 +52,7 @@
} else {
this.$('.seed').html('');
passwordView.show();
this.$('#password').focus()
this.$('#password').focus();
seedView.hide();
}
},