15 lines
592 B
Plaintext
15 lines
592 B
Plaintext
form(ng-submit='postChat(group,_chatMessage)')
|
|
//FIXME ng-model makes this painfully slow! using jquery for now, which is really non-angular-like
|
|
//textarea.span6(rows='3', ui-keypress='{13:"postChat(group,_chatMessage)"}', ng-model='_chatMessage')
|
|
textarea.span6.chat-textarea(rows='3', ui-keypress='{13:"postChat(group,_chatMessage)"}', ng-model='_chatMessage')
|
|
br
|
|
table
|
|
tr
|
|
td
|
|
input.btn.chat-btn(type='submit', value='Send Chat')
|
|
td
|
|
button.btn
|
|
i(class='pull-right icon-refresh', ng-click='sync(group)', tooltip='Fetch Recent Messages')
|
|
|
|
|