mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-11 05:56:12 +10:00
13 lines
279 B
CoffeeScript
13 lines
279 B
CoffeeScript
$ ->
|
|
options=
|
|
type:'post'
|
|
clearForm: true
|
|
beforeSubmit: ->
|
|
if $('.message-body').val().replace(/\s+/, "") == ""
|
|
false
|
|
success: (data) ->
|
|
$('.message-list').prepend(data)
|
|
|
|
$('.submit-mess').click ->
|
|
$('.form-inline').ajaxSubmit options
|