mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 13:09:41 +00:00
14 lines
641 B
Text
14 lines
641 B
Text
form(ng-submit='postChat(group,_chatMessage)')
|
|
.whatever-options
|
|
//FIXME ng-model makes this painfully slow! using jquery for now, which is really non-angular-like
|
|
.control-group.option-large
|
|
textarea.chat-textarea.option-content(style='height:6em;', ui-keypress='{13:"postChat(group,_chatMessage)"}', ng-model='_chatMessage')
|
|
table.pull-right
|
|
tr
|
|
td
|
|
input.btn.chat-btn(type='submit', value='Send Chat', ng-class='{disabled: _sending == true}')
|
|
td
|
|
button.btn(type="button", ng-click='sync(group)', tooltip='Fetch Recent Messages')
|
|
i(class='pull-right icon-refresh')
|
|
|
|
|