Files
edx-platform/lms/static/coffee/src/feedback_form.coffee
2012-06-06 14:09:01 -04:00

11 lines
340 B
CoffeeScript

class @FeedbackForm
constructor: ->
$('#feedback_button').click ->
data =
subject: $('#feedback_subject').val()
message: $('#feedback_message').val()
url: window.location.href
$.postWithPrefix '/send_feedback', data, ->
$('#feedback_div').html 'Feedback submitted. Thank you'
,'json'