chat-detail.html 489 B

1234567891011121314
  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>