diff options
author | Ian Coleman <coleman.ian@gmail.com> | 2015-08-16 21:28:14 +1000 |
---|---|---|
committer | Ian Coleman <coleman.ian@gmail.com> | 2015-08-16 21:28:14 +1000 |
commit | ae30fed8037fa9d1e88e9431c4f301f1d1c53d29 (patch) | |
tree | 4867377db9dd54ff22ecc7c22bc3151847e3ab75 /src | |
parent | a3baa26e61a357b96c7b76f50689ff9cd0f75a02 (diff) | |
download | BIP39-ae30fed8037fa9d1e88e9431c4f301f1d1c53d29.tar.gz BIP39-ae30fed8037fa9d1e88e9431c4f301f1d1c53d29.tar.zst BIP39-ae30fed8037fa9d1e88e9431c4f301f1d1c53d29.zip |
Index column changed to Path
Diffstat (limited to 'src')
-rw-r--r-- | src/index.html | 2 | ||||
-rw-r--r-- | src/js/index.js | 3 |
2 files changed, 3 insertions, 2 deletions
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 |