ponytracker/accounts/static/js/delete_modal.js
2014-08-30 15:38:06 -07:00

11 lines
455 B
JavaScript

/* This script set the action url of the deletion form
* and update messages. */
$('#confirm-delete').on('show.bs.modal', function(e) {
var item = $(e.relatedTarget).data('item');
if (!item) {
item = 'item';
}
$('#confirm-delete-form').attr('action', $(e.relatedTarget).data('action'));
$('#confirm-delete-title').html('Delete ' + item);
$('#confirm-delete-message').html('Are you sure to delete this ' + item + '?');
});