You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-07-17 01:32:29 +02:00
fixed auto reply form
This commit is contained in:
@ -28,10 +28,10 @@ $('document').ready(function() {
|
|||||||
var fieldset = $(this).parents('fieldset');
|
var fieldset = $(this).parents('fieldset');
|
||||||
if (this.checked) {
|
if (this.checked) {
|
||||||
fieldset.removeAttr('disabled');
|
fieldset.removeAttr('disabled');
|
||||||
fieldset.find('input').not(this).removeAttr('disabled');
|
fieldset.find('input,textarea').not(this).removeAttr('disabled');
|
||||||
} else {
|
} else {
|
||||||
fieldset.attr('disabled', '');
|
fieldset.attr('disabled', '');
|
||||||
fieldset.find('input').not(this).attr('disabled', '');
|
fieldset.find('input,textarea').not(this).attr('disabled', '');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user