mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 15:45:55 +00:00
6 lines
142 B
JavaScript
Executable File
6 lines
142 B
JavaScript
Executable File
function toggleWriteability(id_of_patient, checked) {
|
|
document.getElementById(id_of_patient).disabled = checked;
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|