2014-12-28 12:14:01 -08:00
|
|
|
$(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
|
2015-06-08 11:35:16 -07:00
|
|
|
title: translate('frontend.destroy_comment.confirm.title')
|
|
|
|
text: translate('frontend.destroy_comment.confirm.text')
|
2015-01-03 08:36:55 -08:00
|
|
|
type: "warning"
|
|
|
|
showCancelButton: true
|
|
|
|
confirmButtonColor: "#DD6B55"
|
2015-06-08 11:35:16 -07:00
|
|
|
confirmButtonText: translate('views.actions.delete')
|
|
|
|
cancelButtonText: translate('views.actions.cancel')
|
2015-01-03 10:49:47 -08:00
|
|
|
closeOnConfirm: true
|
2015-01-03 08:36:55 -08:00
|
|
|
, ->
|
2014-12-28 12:14:01 -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
|
2015-06-08 11:35:16 -07:00
|
|
|
showNotification translate('frontend.error.message'), false
|
2015-06-08 07:01:16 -07:00
|
|
|
complete: (jqxhr, status) ->
|