codecombat/app/lib/contact.coffee

10 lines
366 B
CoffeeScript
Raw Normal View History

2014-01-03 10:32:13 -08:00
module.exports.sendContactMessage = (contactMessageObject, modal) ->
modal.find('.sending-indicator').show()
jqxhr = $.post '/contact', contactMessageObject, (response) ->
modal.find('.sending-indicator').hide()
2014-07-01 10:16:26 +08:00
modal.find('#contact-message').val('Thanks!')
_.delay ->
2014-07-01 10:16:26 +08:00
modal.find('#contact-message').val('')
modal.modal 'hide'
, 1000