fix address book mobile
This commit is contained in:
parent
c665ccfb80
commit
a7d5ca70d3
1 changed files with 7 additions and 7 deletions
|
|
@ -181,9 +181,9 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th translate>Label</th>
|
<th translate>Label</th>
|
||||||
<th translate>Address</th>
|
<th translate>Address</th>
|
||||||
<th translate>Creator</th>
|
<th class="hide-for-small-only" translate>Creator</th>
|
||||||
<th translate>Date</th>
|
<th class="hide-for-small-only" translate>Date</th>
|
||||||
<th> </th>
|
<th class="hide-for-small-only"> </th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -191,10 +191,10 @@
|
||||||
ng-repeat="(addr, info) in $root.wallet.addressBook"
|
ng-repeat="(addr, info) in $root.wallet.addressBook"
|
||||||
ng-class="{'addressbook-disabled': info.hidden}">
|
ng-class="{'addressbook-disabled': info.hidden}">
|
||||||
<td><a ng-click="copyAddress(addr)" title="Copy address">{{info.label}}</a></td>
|
<td><a ng-click="copyAddress(addr)" title="Copy address">{{info.label}}</a></td>
|
||||||
<td class="ellipsis">{{addr}} <span class="btn-copy" clip-copy="addr"></span></td>
|
<td class="size-12">{{addr}} <span class="btn-copy" clip-copy="addr"></span></td>
|
||||||
<td>{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
|
<td class="hide-for-small-only">{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
|
||||||
<td><time>{{info.createdTs | amCalendar}}</time></td>
|
<td class="hide-for-small-only"><time>{{info.createdTs | amCalendar}}</time></td>
|
||||||
<td width="5"><a ng-click="toggleAddressBookEntry(addr)">{{info.hidden ?
|
<td class="hide-for-small-only" width="5"><a ng-click="toggleAddressBookEntry(addr)">{{info.hidden ?
|
||||||
'Enable' : 'Disable'}}</a></td>
|
'Enable' : 'Disable'}}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue