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>
<th>
<div class="input-group">
Index&nbsp;&nbsp;
Path&nbsp;&nbsp;
<button class="index-toggle">Toggle</button>
</div>
</th>
@@ -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

View File

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

View File

@@ -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