15 lines
489 B
HTML
15 lines
489 B
HTML
<!--
|
|
This template loads for the 'tab.friend-detail' state (app.js)
|
|
'friend' is a $scope variable created in the FriendsCtrl controller (controllers.js)
|
|
The FriendsCtrl pulls data from the Friends service (service.js)
|
|
The Friends service returns an array of friend data
|
|
-->
|
|
<ion-view view-title="{{chat.name}}">
|
|
<ion-content class="padding">
|
|
<img ng-src="{{chat.face}}" style="width: 64px; height: 64px">
|
|
<p>
|
|
{{chat.lastText}}
|
|
</p>
|
|
</ion-content>
|
|
</ion-view>
|