From ae30fed8037fa9d1e88e9431c4f301f1d1c53d29 Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Sun, 16 Aug 2015 21:28:14 +1000 Subject: [PATCH] Index column changed to Path --- bip39-standalone.html | 5 +++-- src/index.html | 2 +- src/js/index.js | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bip39-standalone.html b/bip39-standalone.html index c04272f..9ab9552 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -223,7 +223,7 @@
- Index   + Path  
@@ -14907,7 +14907,8 @@ var Mnemonic = function(language) { var addressCell = row.find(".address span"); var privkeyCell = row.find(".privkey span"); // Content - indexCell.text(index); + var indexText = derivationPath + "/" + index; + indexCell.text(indexText); addressCell.text(address); privkeyCell.text(privkey); // Visibility diff --git a/src/index.html b/src/index.html index 426e7a6..59ef1a0 100644 --- a/src/index.html +++ b/src/index.html @@ -219,7 +219,7 @@
- Index   + Path  
diff --git a/src/js/index.js b/src/js/index.js index d0533f9..2f7815d 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -325,7 +325,8 @@ var addressCell = row.find(".address span"); var privkeyCell = row.find(".privkey span"); // Content - indexCell.text(index); + var indexText = derivationPath + "/" + index; + indexCell.text(indexText); addressCell.text(address); privkeyCell.text(privkey); // Visibility -- 2.41.0