From 55a9e51a1be52211cf25aa1878e6118c16874d9a Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Sun, 16 Aug 2015 19:31:35 +1000 Subject: [PATCH] Wallet tabs removed, added text to BIP32 tab --- src/index.html | 63 ++++++++++++++++++++----------------------------- src/js/index.js | 3 --- 2 files changed, 25 insertions(+), 41 deletions(-) diff --git a/src/index.html b/src/index.html index 8ad93c2..426e7a6 100644 --- a/src/index.html +++ b/src/index.html @@ -35,6 +35,11 @@ border-bottom-left-radius: 20px 20px; border-bottom-right-radius: 20px 20px; } + .no-border { + border: 0; + box-shadow: inset 0 1px 1px rgba(0,0,0,.0); + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.0); + } @@ -98,13 +103,7 @@

Derivation Path

-
-
-
-
-
-

For more info see the Hive Wallet homepage

-
-
- -
- -
-
-
-
-
-
-
-
-
-

For more info see the Mycelium Wallet homepage

-
-
- -
- -
-
-
-
-
+

@@ -202,6 +171,24 @@
+
+ +
+

+ Use path m/0'/0. + For more info see the Hive Wallet homepage +

+
+
+
+ +
+

+ Use path m/44'/0'/0'/0. + For more info see the Mycelium Wallet homepage +

+
+
diff --git a/src/js/index.js b/src/js/index.js index c8ab284..866ad24 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -40,7 +40,6 @@ DOM.indexToggle = $(".index-toggle"); DOM.addressToggle = $(".address-toggle"); DOM.privateKeyToggle = $(".private-key-toggle"); - DOM.myceliumPath = $("#mycelium-path"); var derivationPath = $(".tab-pane.active .path").val(); @@ -401,7 +400,6 @@ onSelect: function() { network = bitcoin.networks.bitcoin; DOM.bip44coin.val(0); - DOM.myceliumPath.val("m/44'/0'/0'/0"); }, }, { @@ -409,7 +407,6 @@ onSelect: function() { network = bitcoin.networks.testnet; DOM.bip44coin.val(1); - DOM.myceliumPath.val("m/44'/1'/0'/0"); }, }, { -- 2.41.0