From 507a9c2925dd46f0cbba4c53d2a95cd9ed01dbcf Mon Sep 17 00:00:00 2001 From: Robert Johnson Date: Mon, 29 Sep 2014 22:50:49 -0500 Subject: [PATCH] updated standalone --- bip39-standalone.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/bip39-standalone.html b/bip39-standalone.html index ce82c30..debc6f2 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -6409,6 +6409,16 @@ button.close {

Derived Addresses

Note these addreses are derived from the BIP32 Extended Key

+
+ +
+ +
@@ -33845,6 +33855,7 @@ var Mnemonic = function(language) { DOM.network = $(".network"); DOM.phraseNetwork = $("#network-phrase"); DOM.bip44Network = $("#network-bip44"); + DOM.addressNetwork = $("#network-address-type"); DOM.phrase = $(".phrase"); DOM.passphrase = $(".passphrase"); DOM.generate = $(".generate"); @@ -33918,10 +33929,13 @@ var Mnemonic = function(language) { } else if (n == "dogecoin") { network = Bitcoin.networks.dogecoin; - disableBip44Tab(); + //disableBip44Tab(); } DOM.phraseNetwork.val(n); DOM.bip44Network.val(n); + if(e.target != DOM.addressNetwork.dom){ + DOM.addressNetwork.val(n); + } delayedPhraseChanged(); } -- 2.41.0