diff options
-rw-r--r-- | bip39-standalone.html | 5 | ||||
-rw-r--r-- | src/index.html | 2 | ||||
-rw-r--r-- | 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 @@ | |||
223 | <thead> | 223 | <thead> |
224 | <th> | 224 | <th> |
225 | <div class="input-group"> | 225 | <div class="input-group"> |
226 | Index | 226 | Path |
227 | <button class="index-toggle">Toggle</button> | 227 | <button class="index-toggle">Toggle</button> |
228 | </div> | 228 | </div> |
229 | </th> | 229 | </th> |
@@ -14907,7 +14907,8 @@ var Mnemonic = function(language) { | |||
14907 | var addressCell = row.find(".address span"); | 14907 | var addressCell = row.find(".address span"); |
14908 | var privkeyCell = row.find(".privkey span"); | 14908 | var privkeyCell = row.find(".privkey span"); |
14909 | // Content | 14909 | // Content |
14910 | indexCell.text(index); | 14910 | var indexText = derivationPath + "/" + index; |
14911 | indexCell.text(indexText); | ||
14911 | addressCell.text(address); | 14912 | addressCell.text(address); |
14912 | privkeyCell.text(privkey); | 14913 | privkeyCell.text(privkey); |
14913 | // Visibility | 14914 | // 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 @@ | |||
219 | <thead> | 219 | <thead> |
220 | <th> | 220 | <th> |
221 | <div class="input-group"> | 221 | <div class="input-group"> |
222 | Index | 222 | Path |
223 | <button class="index-toggle">Toggle</button> | 223 | <button class="index-toggle">Toggle</button> |
224 | </div> | 224 | </div> |
225 | </th> | 225 | </th> |
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 @@ | |||
325 | var addressCell = row.find(".address span"); | 325 | var addressCell = row.find(".address span"); |
326 | var privkeyCell = row.find(".privkey span"); | 326 | var privkeyCell = row.find(".privkey span"); |
327 | // Content | 327 | // Content |
328 | indexCell.text(index); | 328 | var indexText = derivationPath + "/" + index; |
329 | indexCell.text(indexText); | ||
329 | addressCell.text(address); | 330 | addressCell.text(address); |
330 | privkeyCell.text(privkey); | 331 | privkeyCell.text(privkey); |
331 | // Visibility | 332 | // Visibility |