diff options
author | Ian Coleman <coleman.ian@gmail.com> | 2017-08-06 07:58:28 +1000 |
---|---|---|
committer | Ian Coleman <coleman.ian@gmail.com> | 2017-08-07 18:54:12 +1000 |
commit | 7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc (patch) | |
tree | 4ebd05ea58e8c8b34a1eb2c640dc39c309fa7c76 | |
parent | 4d9c184a8416d6b8451bbfa5e856fe11103ed2e3 (diff) | |
download | BIP39-7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc.tar.gz BIP39-7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc.tar.zst BIP39-7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc.zip |
Default coin selection is BTC - Bitcoin
-rw-r--r-- | src/js/index.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/js/index.js b/src/js/index.js index 01027b5..a12e442 100644 --- a/src/js/index.js +++ b/src/js/index.js | |||
@@ -818,6 +818,9 @@ | |||
818 | var option = $("<option>"); | 818 | var option = $("<option>"); |
819 | option.attr("value", i); | 819 | option.attr("value", i); |
820 | option.text(network.name); | 820 | option.text(network.name); |
821 | if (network.name == "BTC - Bitcoin") { | ||
822 | option.prop("selected", true); | ||
823 | } | ||
821 | DOM.phraseNetwork.append(option); | 824 | DOM.phraseNetwork.append(option); |
822 | } | 825 | } |
823 | } | 826 | } |