From: iancoleman Date: Fri, 21 Aug 2015 00:36:39 +0000 (+1000) Subject: Merge pull request #15 from dooglus/clam X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=bffa8eda540af07f253259b155c5b23aa54d8d57;hp=5c434a8a00f2e18b47ca45b0c6834955cf4f02a4;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git Merge pull request #15 from dooglus/clam Add CLAM. --- diff --git a/bip39-standalone.html b/bip39-standalone.html index a31ac2f..5ef69ea 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -70,7 +70,7 @@
- + @@ -14726,7 +14726,6 @@ var Mnemonic = function(language) { function bip44Changed() { setBip44DerivationPath(); - derivationPath = DOM.bip44path.val(); derivationChanged(); } @@ -14928,7 +14927,7 @@ var Mnemonic = function(language) { addressCell.addClass("invisible"); } if (!showPrivKey) { - privkeCell.addClass("invisible"); + privkeyCell.addClass("invisible"); } DOM.addresses.append(row); } @@ -14954,6 +14953,7 @@ var Mnemonic = function(language) { path += account + "'/"; path += change; DOM.bip44path.val(path); + derivationPath = DOM.bip44path.val(); } function parseIntNoNaN(val, defaultVal) { diff --git a/src/index.html b/src/index.html index 59ef1a0..34b4248 100644 --- a/src/index.html +++ b/src/index.html @@ -66,7 +66,7 @@
- + diff --git a/src/js/index.js b/src/js/index.js index a1cc31b..0a662a8 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -135,7 +135,6 @@ function bip44Changed() { setBip44DerivationPath(); - derivationPath = DOM.bip44path.val(); derivationChanged(); } @@ -337,7 +336,7 @@ addressCell.addClass("invisible"); } if (!showPrivKey) { - privkeCell.addClass("invisible"); + privkeyCell.addClass("invisible"); } DOM.addresses.append(row); } @@ -363,6 +362,7 @@ path += account + "'/"; path += change; DOM.bip44path.val(path); + derivationPath = DOM.bip44path.val(); } function parseIntNoNaN(val, defaultVal) {