Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.30 KB | None | 0 0
  1. <ion-list class="chapngo-body-container " can-swipe="true" >
  2.             <ion-item-sliding  #slidingIte>
  3.                 <ion-item class="chapngo item-avatar item-thumbnail-left" ng-repeat = 'item in adresses | filter:tag.findKey' on-hold = 'editAdress(item)' ng-click = 'linkTo(item)' style="padding-right: 0px;" >
  4.                     <div class="chapngo-btn round ft-normal"  >
  5.                         <i class="icon-spoon-knife" style="color : #000000;"></i>
  6.                     </div>
  7.                     <div>
  8.                         <div style = "padding-right : 50px;min-height : 30px;" >
  9.                             <h2 style="padding: 4px;">{{ item.name }}</h2>
  10.                             <p><small>{{ realName(item.tag[0]) }} {{ (item.tag.length > 1)?' - '+realName(item.tag[1]):'' }}</small></p>
  11.                         </div>
  12.                         <div class="like-unlike" >
  13.                             <button class="ion-happy-outline button button-clear  {{ likeAt(item) }}"></button>
  14.                             <button class="ion-sad-outline button button-clear {{ notLikeAt(item) }}"></button>
  15.                         </div>
  16.                         <hr class = 'adress-separator' />
  17.                     </div>
  18.                 </ion-item>
  19.             </ion-item-sliding>
  20.         </ion-list>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement