From: Ian Coleman Date: Sun, 11 Dec 2016 23:51:37 +0000 (+1100) Subject: bip44TabSelected and bip32TabSelected functions X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git;a=commitdiff_plain;h=32fab2c39507357909438c2be8cd100c6539038f bip44TabSelected and bip32TabSelected functions This is more descriptive than a blob of jquery, and simplifies reuse in the near future. --- 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",