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

28 lines
886 B
CoffeeScript
Raw Normal View History

$(document).on "click", "a[data-action=ab-comment-destroy]", (ev) ->
ev.preventDefault()
2015-01-03 10:49:47 -08:00
btn = $(this)
cid = btn[0].dataset.cId
2015-01-03 08:36:55 -08:00
swal
title: "Really delete?"
text: "You will not be able to recover this comment."
2015-01-03 08:36:55 -08:00
type: "warning"
showCancelButton: true
confirmButtonColor: "#DD6B55"
confirmButtonText: "Delete"
cancelButtonText: "Cancel"
2015-01-03 10:49:47 -08:00
closeOnConfirm: true
2015-01-03 08:36:55 -08:00
, ->
$.ajax
url: '/ajax/destroy_comment'
type: 'POST'
data:
comment: cid
success: (data, status, jqxhr) ->
if data.success
$("li[data-comment-id=#{cid}]").slideUp()
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) ->