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="{{friend.name}}">
8
  <ion-content class="padding">
9
    <img ng-src="{{friend.face}}" style="width: 64px; height: 64px">
10
    <h3>Notes</h3>
11
    <p>
12
      {{friend.notes}}
13
    </p>
14
  </ion-content>
15
</ion-view>