Retrospring/app/assets/javascripts/answerbox/comment/report.coffee

26 lines
835 B
CoffeeScript
Raw Normal View History

$(document).on "click", "a[data-action=ab-comment-report]", (ev) ->
ev.preventDefault()
2015-01-03 08:36:55 -08:00
swal
title: "Really report?"
text: "A moderator will review this comment and decide what happens."
2015-01-03 08:36:55 -08:00
type: "warning"
showCancelButton: true
confirmButtonColor: "#DD6B55"
confirmButtonText: "Report"
2015-01-03 08:36:55 -08:00
closeOnConfirm: false
, ->
btn = $(this)
cid = btn[0].dataset.cId
$.ajax
url: '/ajax/report'
type: 'POST'
data:
id: cid
type: 'comment'
success: (data, status, jqxhr) ->
showNotification data.message, data.success
error: (jqxhr, status, error) ->
console.log jqxhr, status, error
showNotification "An error occurred, a developer should check the console for details", false
complete: (jqxhr, status) ->
btn.button "reset"