zeus.ugent.be/content/assets/scripts/message.coffee

12 lines
336 B
CoffeeScript
Raw Normal View History

2018-04-27 00:13:05 +00:00
$ '.send'
.click ->
$context = $ this
2018-04-27 02:05:25 +00:00
$.ajax
# url: "http://localhost:8080/"
url: "https://kelder.zeus.ugent.be/messages/",
contentType: "text/plain",
2018-04-27 00:13:05 +00:00
type: "POST"
2018-04-27 02:05:25 +00:00
data: $('.chatbox').val()
success: $('#chat-response').text('Success! :)')
error: $('#chat-response').text('Error !1!')