houdini/app/javascript/legacy/nonprofits/recurring_donations/index/delete.js

12 lines
286 B
JavaScript
Raw Normal View History

2019-11-06 20:36:28 +00:00
// License: LGPL-3.0-or-later
appl.def('ajax_details', {
del: function(id, node) {
appl.ajax.del('recurring_donation_details', id, node).then(function(resp) {
appl.ajax.index('recurring_donations')
appl.notify("Successfully deactivated")
appl.close_side_panel()
})
}
})