aboutsummaryrefslogtreecommitdiff
path: root/src/js
diff options
context:
space:
mode:
authorIan Coleman <coleman.ian@gmail.com>2017-08-06 07:58:28 +1000
committerIan Coleman <coleman.ian@gmail.com>2017-08-07 18:54:12 +1000
commit7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc (patch)
tree4ebd05ea58e8c8b34a1eb2c640dc39c309fa7c76 /src/js
parent4d9c184a8416d6b8451bbfa5e856fe11103ed2e3 (diff)
downloadBIP39-7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc.tar.gz
BIP39-7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc.tar.zst
BIP39-7b742f87d3b17fa73e8fcdfda19bc8d08405f7cc.zip
Default coin selection is BTC - Bitcoin
Diffstat (limited to 'src/js')
-rw-r--r--src/js/index.js3
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 }