Sha256: 91df747d6685bd08e953ca8c44ff4e7f6ed8d19a31f9cdb888750a76cbe08678
Contents?: true
Size: 404 Bytes
Versions: 38
Compression:
Stored size: 404 Bytes
Contents
$(() => { const $submitBtn = $("#btn-submit-from-modal"); const $modalBtn = $("#btn-modal-closure-sign"); const $signCheckbox = $("#closure_sign_signed"); const changeButtonProps = (event) => { const notSigned = !$(event.target).is(":checked"); $modalBtn.prop("disabled", notSigned); $submitBtn.prop("disabled", notSigned); }; $signCheckbox.on("change", changeButtonProps); });
Version data entries
38 entries across 38 versions & 1 rubygems