1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-07-15 01:24:34 +02:00

fixed auto reply form

This commit is contained in:
Alexander Graf
2021-11-12 12:19:45 +01:00
parent cf7914d050
commit 84a5514a97

View File

@ -28,10 +28,10 @@ $('document').ready(function() {
var fieldset = $(this).parents('fieldset');
if (this.checked) {
fieldset.removeAttr('disabled');
fieldset.find('input').not(this).removeAttr('disabled');
fieldset.find('input,textarea').not(this).removeAttr('disabled');
} else {
fieldset.attr('disabled', '');
fieldset.find('input').not(this).attr('disabled', '');
fieldset.find('input,textarea').not(this).attr('disabled', '');
}
});