pull/266/head
Mikunj 6 years ago
parent b2ecb87462
commit 40ab727b12

@ -1826,7 +1826,8 @@
}, },
"seedViewTitle": { "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" "description": "The title shown when the user views their seeds"
}, },

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

Loading…
Cancel
Save