Merge pull request #6108 from gabrielbazan7/ref/addressbook
remove slide to delete and adding that option to addr entry view
This commit is contained in:
commit
a4495f73fc
4 changed files with 16 additions and 17 deletions
|
|
@ -42,9 +42,6 @@
|
|||
<h2>{{addrEntry.name}}</h2>
|
||||
<p>{{addrEntry.address}}</p>
|
||||
<i class="icon bp-arrow-right"></i>
|
||||
<ion-option-button class="button-assertive" ng-click="remove(addrEntry.address)">
|
||||
<i class="icon ion-minus-circled"></i>
|
||||
</ion-option-button>
|
||||
</ion-item>
|
||||
</ion-list>
|
||||
</ion-content>
|
||||
|
|
|
|||
|
|
@ -5,6 +5,11 @@
|
|||
<ion-nav-title>
|
||||
<span>{{addressbookEntry.name}}</span>
|
||||
</ion-nav-title>
|
||||
<ion-nav-buttons side="secondary">
|
||||
<button class="button back-button" ng-click="remove(addressbookEntry.address)">
|
||||
Remove
|
||||
</button>
|
||||
</ion-nav-buttons>
|
||||
</ion-nav-bar>
|
||||
<ion-content scroll="false">
|
||||
<div class="gravatar-content">
|
||||
|
|
@ -23,7 +28,7 @@
|
|||
<span>{{addressbookEntry.email}}</span>
|
||||
</div>
|
||||
<div class="item item-text-wrap">
|
||||
<span class="address-book-field-label" translate>Address</span>
|
||||
<span class="address-book-field-label" copy-to-clipboard="addressbookEntry.address" translate>Address</span>
|
||||
<span>{{addressbookEntry.address}}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue