Fix hide() not defined on AutoMoveTo and AutoCopyTo.

pull/3630/head
Isaac Connor 2022-10-11 14:47:26 -04:00
parent 8081ead631
commit 22d819c903
1 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ function click_automove(element) {
if ( this.checked ) {
$j(this.form.elements['filter[AutoMoveTo]']).css('display', 'inline');
} else {
this.form.elements['filter[AutoMoveTo]'].hide();
$j(this.form.elements['filter[AutoMoveTo]']).hide();
}
}
@ -130,7 +130,7 @@ function click_autocopy(element) {
if ( this.checked ) {
$j(this.form.elements['filter[AutoCopyTo]']).css('display', 'inline');
} else {
this.form.elements['filter[AutoCopyTo]'].hide();
$j(this.form.elements['filter[AutoCopyTo]']).hide();
}
}