Commit fbbee72683fd12dacc0e791f5c896cdf274b6291
1 parent
f13676bf
Exists in
master
and in
2 other branches
Bigger comment field
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
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('confjuvapp.controllers', []) |
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) { | ... | ... |