demarches-normaliennes/app/javascript/manager/fields/features.js
2018-08-13 15:17:13 +02:00

18 lines
443 B
JavaScript

// Administrate injects its own copy of jQuery
/* globals $ */
$(document).on('change', '#features input[type=checkbox]', ({ target }) => {
target = $(target);
const url = target.data('url');
const key = target.data('key');
const value = target.prop('checked');
$.ajax(url, {
method: 'put',
contentType: 'application/json',
dataType: 'json',
data: JSON.stringify({
features: { [key]: value }
})
});
});