You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
728 B
22 lines
728 B
$(document).on('turbolinks:load', function() {
|
|
var $editModal = $('.department-apply-edit-modal');
|
|
if($editModal.length > 0){
|
|
var $form = $editModal.find('form.department-apply-form');
|
|
var $applyIdInput = $form.find('input[name="id"]');
|
|
$editModal.on('show.bs.modal', function (event) {
|
|
var $link = $(event.relatedTarget);
|
|
var applyId = $link.data('id');
|
|
$applyIdInput.val(applyId);
|
|
});
|
|
$editModal.on('click', '.submit-btn', function(){
|
|
$.ajax({
|
|
method: "PUT",
|
|
dataType: 'script',
|
|
url: "/admins/department_applies/"+ $applyIdInput.val(),
|
|
data: $form.serialize(),
|
|
}).done(function(){
|
|
$editModal.modal('hide');
|
|
});
|
|
});
|
|
}
|
|
}); |