removed .button calls for destroy
This commit is contained in:
parent
ce280fffa1
commit
9fe827b537
|
@ -2,7 +2,6 @@ $(document).on "click", "a[data-action=ab-destroy]", (ev) ->
|
|||
ev.preventDefault()
|
||||
if confirm 'Are you sure?'
|
||||
btn = $(this)
|
||||
btn.button "loading"
|
||||
aid = btn[0].dataset.aId
|
||||
$.ajax
|
||||
url: '/ajax/destroy_answer' # TODO: find a way to use rake routes instead of hardcoding them here
|
||||
|
@ -16,5 +15,4 @@ $(document).on "click", "a[data-action=ab-destroy]", (ev) ->
|
|||
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"
|
||||
complete: (jqxhr, status) ->
|
Loading…
Reference in New Issue