nicknames

This commit is contained in:
Matias Alejo Garcia 2014-04-30 18:46:52 -03:00
parent 1e8895f4b8
commit 6b75dd8ddb
1 changed files with 8 additions and 4 deletions

View File

@ -234,7 +234,7 @@
<input type="text" class="form-control" ng-model="walletName" placeholder="Enter wallet name">
</div>
<div class="large-6 large-centered columns m30v">
<h6>Your nickname (optional)</h6>
<h6>Your name (optional)</h6>
<input ng-model="myNickname" placeholder="" class="size-24" style="width:100%">
</div>
</div>
@ -315,10 +315,10 @@
<div class="tx-copayers">
<div class="box-copayers" ng-repeat="(peer, actions) in tx.peerActions">
<div class="box-copayers" ng-repeat="(cId, actions) in tx.peerActions">
<figure class="left">
<a href="#/transactions" class="has-tip" tooltip-popup-delay='1000' tooltip="{{peer === $root.wallet.getMyCopayerId() ? 'You' : peer}}">
<img src="./img/satoshi.gif" alt="peer" width="200">
<a href="#/transactions" class="has-tip" tooltip-popup-delay='1000' tooltip="{{cId === $root.wallet.getMyCopayerId() ? 'You' : $root.wallet.publicKeyRing.nicknameForCopayer(cId)}}">
<img src="./img/satoshi.gif" alt="cId" width="200">
</a>
</figure>
<div class="box-status">
@ -337,6 +337,10 @@
</a>
</span>
</div>
<div class="text-center" style="margin-right:16px; color:#999; font-size:12px">
{{$root.wallet.publicKeyRing.nicknameForCopayer(cId)}}
</div>
</div>
</div>