|
|
@ -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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|