mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
17 lines
498 B
CoffeeScript
17 lines
498 B
CoffeeScript
|
|
||
|
|
||
|
module.exports.sendContactMessage = (contactMessageObject, modal) ->
|
||
|
modal.find('.sending-indicator').show()
|
||
|
jqxhr = $.post '/contact',
|
||
|
email: contactMessageObject.email
|
||
|
message: contactMessageObject.message
|
||
|
,
|
||
|
(response) ->
|
||
|
console.log "Got contact response:", response
|
||
|
modal.find('.sending-indicator').hide()
|
||
|
modal.find('#contact-message').val("Thanks!")
|
||
|
_.delay ->
|
||
|
modal.find('#contact-message').val("")
|
||
|
modal.modal 'hide'
|
||
|
, 1000
|