From 32fab2c39507357909438c2be8cd100c6539038f Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Mon, 12 Dec 2016 10:51:37 +1100 Subject: [PATCH] bip44TabSelected and bip32TabSelected functions This is more descriptive than a blob of jquery, and simplifies reuse in the near future. --- src/js/index.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/js/index.js b/src/js/index.js index 1e66dd8..6367c01 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -388,7 +388,7 @@ } function getDerivationPath() { - if (DOM.bip44tab.hasClass("active")) { + if (bip44TabSelected()) { var purpose = parseIntNoNaN(DOM.bip44purpose.val(), 44); var coin = parseIntNoNaN(DOM.bip44coin.val(), 0); var account = parseIntNoNaN(DOM.bip44account.val(), 0); @@ -403,7 +403,7 @@ console.log("Using derivation path from BIP44 tab: " + derivationPath); return derivationPath; } - else if (DOM.bip32tab.hasClass("active")) { + else if (bip32TabSelected()) { var derivationPath = DOM.bip32path.val(); console.log("Using derivation path from BIP32 tab: " + derivationPath); return derivationPath; @@ -940,6 +940,14 @@ DOM.qrHint.toggleClass("hidden"); } + function bip44TabSelected() { + return DOM.bip44tab.hasClass("active"); + } + + function bip32TabSelected() { + return DOM.bip32tab.hasClass("active"); + } + var networks = [ { name: "Bitcoin", -- 2.41.0