Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13542 anikendra 1
<!--
2
  This template loads for the 'tab.friend-detail' state (app.js)
3
  'friend' is a $scope variable created in the FriendsCtrl controller (controllers.js)
4
  The FriendsCtrl pulls data from the Friends service (service.js)
5
  The Friends service returns an array of friend data
6
-->
7
<ion-view view-title="{{chat.name}}">
8
  <ion-content class="padding">
9
    <img ng-src="{{chat.face}}" style="width: 64px; height: 64px">
10
    <p>
11
      {{chat.lastText}}
12
    </p>
13
  </ion-content>
14
</ion-view>