Sha256: fa78b5601eebccd11130229c20b7b8b5d9d6af887006dac2eb4fe1ad05cf2890
Contents?: true
Size: 518 Bytes
Versions: 4
Compression:
Stored size: 518 Bytes
Contents
$(() => { const $participatoryProcessScopeEnabled = $('#participatory_process_scopes_enabled'); const $participatoryProcessScopeId = $("#participatory_process_scope_id"); if ($('.edit_participatory_process').length > 0) { $participatoryProcessScopeEnabled.on('change', (event) => { const checked = event.target.checked; $participatoryProcessScopeId.attr("disabled", !checked); }) $participatoryProcessScopeId.attr("disabled", !$participatoryProcessScopeEnabled.prop('checked')); } });
Version data entries
4 entries across 4 versions & 2 rubygems