mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 13:06:25 +10:00
16 lines
412 B
CoffeeScript
16 lines
412 B
CoffeeScript
$ ->
|
|
options=
|
|
type:'post'
|
|
clearForm: true
|
|
beforeSubmit: ->
|
|
if $('.message-body').val().replace(/\s+/, "") == ""
|
|
false
|
|
|
|
$('.submit-mess').click ->
|
|
$('.form-inline').ajaxSubmit options
|
|
|
|
pusher = new Pusher $('#pusher_key').val()
|
|
channel = pusher.subscribe $('#team_slug').val()
|
|
channel.bind 'new_message', (data) ->
|
|
$('.message-list').prepend(data.content).show('slow')
|