tab-chats.html 563 B

12345678910111213141516
  1. <ion-view view-title="Chats">
  2. <ion-content>
  3. <ion-list>
  4. <ion-item class="item-remove-animate item-avatar item-icon-right" ng-repeat="chat in chats" type="item-text-wrap" href="#/tab/chats/{{chat.id}}">
  5. <img ng-src="{{chat.face}}">
  6. <h2>{{chat.name}}</h2>
  7. <p>{{chat.lastText}}</p>
  8. <i class="icon ion-chevron-right icon-accessory"></i>
  9. <ion-option-button class="button-assertive" ng-click="remove(chat)">
  10. Delete
  11. </ion-option-button>
  12. </ion-item>
  13. </ion-list>
  14. </ion-content>
  15. </ion-view>