Initial-Release

This commit is contained in:
Carsten Hilmer
2016-08-05 00:46:43 +02:00
parent 38914d6e7b
commit 6a1387f45e
138 changed files with 159814 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<!--
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>