Created
June 16, 2016 14:25
-
-
Save mayroncachina/b6e4d1445195cf2a1fc4acfe80722492 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ion-view view-title="Mensagens" ng-controller="Messages"> | |
<ion-nav-bar class="bar-royal" ng-controller="Back"> | |
<ion-nav-buttons side="left"> | |
<button class="button back-button buttons button-clear header-item" ng-click="myGoBack()"> | |
<i class="ion-chevron-left"></i> Voltar | |
</button> | |
</ion-nav-buttons> | |
</ion-nav-bar> | |
<ion-content class="messages-chat" class="has-header"> | |
<ul> | |
<li ng-repeat="message in messages"> | |
<label>{{ message.from }}</label> | |
<p>{{ message.text }}</p> | |
</li> | |
</ul> | |
</ion-content> | |
<!--provavel problema --> | |
<div class="messages-bottom"> | |
<div class="textarea"> | |
<textarea ng-model="text" id="message"></textarea> | |
</div> | |
<i class="icon ion-paper-airplane" ng-click="send()"></i> | |
</div> | |
</ion-view> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment