Private Message (PM / DM) textbox is too small #4425

This commit is contained in:
Melissa Mcewen 2014-12-28 23:51:37 -06:00
parent f8cdcd2e75
commit c4e62fc79b

View file

@ -46,7 +46,7 @@ script(type='text/ng-template', id='modals/private-message.html')
.modal-header .modal-header
h4=env.t('pmHeading', {name: "{{profile.profile.name}}"}) h4=env.t('pmHeading', {name: "{{profile.profile.name}}"})
.modal-body .modal-body
textarea.form-control(type='text',ng-model='_message') textarea.form-control(type='text',rows='5', ng-model='_message')
.modal-footer .modal-footer
button.btn.btn-primary(ng-click='sendPrivateMessage(profile._id, _message)')=env.t("send") button.btn.btn-primary(ng-click='sendPrivateMessage(profile._id, _message)')=env.t("send")
button.btn.btn-default(ng-click='$close()')=env.t('cancel') button.btn.btn-default(ng-click='$close()')=env.t('cancel')