aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/first-time
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2016-09-13 01:22:06 +0800
committerGitHub <noreply@github.com>2016-09-13 01:22:06 +0800
commitfcc9ca812e557fd5ecc547f5eb597069788d6c00 (patch)
tree8cf24728e862b048c49e0e94bb1d614b42ddf3bc /ui/app/first-time
parent3e836abc4797445fa97f8d325c2b4801d2106930 (diff)
parent56b9b1766d5d71ac427e27503e5fc8b51fd85b99 (diff)
downloadtangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.tar
tangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.tar.gz
tangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.tar.bz2
tangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.tar.lz
tangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.tar.xz
tangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.tar.zst
tangerine-wallet-browser-fcc9ca812e557fd5ecc547f5eb597069788d6c00.zip
Merge pull request #638 from MetaMask/i555-SaltVault
Add new eth-lightwallet salting to vault.
Diffstat (limited to 'ui/app/first-time')
-rw-r--r--ui/app/first-time/restore-vault.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/first-time/restore-vault.js b/ui/app/first-time/restore-vault.js
index 4c1f21008..c34cd7e66 100644
--- a/ui/app/first-time/restore-vault.js
+++ b/ui/app/first-time/restore-vault.js
@@ -41,7 +41,7 @@ RestoreVaultScreen.prototype.render = function () {
// wallet seed entry
h('h3', 'Wallet Seed'),
h('textarea.twelve-word-phrase.letter-spacey', {
- dataset: {
+ dataSet: {
persistentFormId: 'wallet-seed',
},
placeholder: 'Enter your secret twelve word phrase here to restore your vault.',
@@ -52,7 +52,7 @@ RestoreVaultScreen.prototype.render = function () {
type: 'password',
id: 'password-box',
placeholder: 'New Password (min 8 chars)',
- dataset: {
+ dataSet: {
persistentFormId: 'password',
},
style: {
@@ -67,7 +67,7 @@ RestoreVaultScreen.prototype.render = function () {
id: 'password-box-confirm',
placeholder: 'Confirm Password',
onKeyPress: this.onMaybeCreate.bind(this),
- dataset: {
+ dataSet: {
persistentFormId: 'password-confirmation',
},
style: {