ConfigForm.js 142 B

123456
  1. function toggleWriteability(id_of_patient, checked) {
  2. document.getElementById(id_of_patient).disabled = checked;
  3. }
  4. // vim: et sw=4 sts=4