-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtab-chats.html
More file actions
23 lines (23 loc) · 1.23 KB
/
tab-chats.html
File metadata and controls
23 lines (23 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<ion-view view-title="Chats">
<ion-content scroll-sista="header" scroll-event-interval="5">
<!-- <div style="height: 6.5vh;"></div> -->
<ion-list>
<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}}">
<img ng-src="{{chat.face}}">
<h2>{{chat.name}}</h2>
<p>{{chat.lastText}}</p>
<i class="icon ion-chevron-right icon-accessory"></i>
<ion-option-button class="button-assertive" ng-click="remove(chat)">
Delete
</ion-option-button>
</ion-item>
</ion-list>
<div class="list card" ng-repeat="n in [1,2,3,45,6,7,8,9]">
<div class="item item-body">
<p>
Bacon ipsum dolor amet beef cow pork, picanha sirloin filet mignon alcatra bacon ham. Landjaeger fatback jowl short ribs shoulder sirloin tongue picanha. Boudin tail strip steak shankle, turkey capicola pancetta tongue pork chop drumstick meatloaf. Venison tongue fatback strip steak ribeye kevin, capicola bacon.
</p>
</div>
</div>
</ion-content>
</ion-view>