Index column changed to Path

This commit is contained in:
Ian Coleman
2015-08-16 21:28:14 +10:00
parent a3baa26e61
commit ae30fed803
3 changed files with 6 additions and 4 deletions

View File

@@ -223,7 +223,7 @@
<thead> <thead>
<th> <th>
<div class="input-group"> <div class="input-group">
Index&nbsp;&nbsp; Path&nbsp;&nbsp;
<button class="index-toggle">Toggle</button> <button class="index-toggle">Toggle</button>
</div> </div>
</th> </th>
@@ -14907,7 +14907,8 @@ var Mnemonic = function(language) {
var addressCell = row.find(".address span"); var addressCell = row.find(".address span");
var privkeyCell = row.find(".privkey span"); var privkeyCell = row.find(".privkey span");
// Content // Content
indexCell.text(index); var indexText = derivationPath + "/" + index;
indexCell.text(indexText);
addressCell.text(address); addressCell.text(address);
privkeyCell.text(privkey); privkeyCell.text(privkey);
// Visibility // Visibility

View File

@@ -219,7 +219,7 @@
<thead> <thead>
<th> <th>
<div class="input-group"> <div class="input-group">
Index&nbsp;&nbsp; Path&nbsp;&nbsp;
<button class="index-toggle">Toggle</button> <button class="index-toggle">Toggle</button>
</div> </div>
</th> </th>

View File

@@ -325,7 +325,8 @@
var addressCell = row.find(".address span"); var addressCell = row.find(".address span");
var privkeyCell = row.find(".privkey span"); var privkeyCell = row.find(".privkey span");
// Content // Content
indexCell.text(index); var indexText = derivationPath + "/" + index;
indexCell.text(indexText);
addressCell.text(address); addressCell.text(address);
privkeyCell.text(privkey); privkeyCell.text(privkey);
// Visibility // Visibility