Commit fbbee72683fd12dacc0e791f5c896cdf274b6291

Authored by Caio Almeida
1 parent f13676bf

Bigger comment field

ConfJuvApp/www/html/_create_comment.html
... ... @@ -6,7 +6,7 @@
6 6 <a class="back icon-left ion-reply" ng-click="closeCommentModal()">Voltar</a>
7 7 </h1>
8 8  
9   - <label class="item item-input"><textarea placeholder="Comentário" ng-model="data.comment"></textarea></label>
  9 + <label class="item item-input"><textarea placeholder="Comentário" ng-model="data.comment" rows="15"></textarea></label>
10 10  
11 11 <p class="text-center">
12 12 <button class="button" type="submit">Enviar</button>
... ...
ConfJuvApp/www/js/controllers.js
... ... @@ -496,7 +496,7 @@ angular.module(&#39;confjuvapp.controllers&#39;, [])
496 496 }
497 497 else {
498 498 // Initiate the modal
499   - $ionicModal.fromTemplateUrl('html/_create_comment.html', {
  499 + $ionicModal.fromTemplateUrl('html/_create_comment.html?1', {
500 500 scope: $scope,
501 501 animation: 'slide-in-up'
502 502 }).then(function(modal) {
... ...