Fix hide() not defined on AutoMoveTo and AutoCopyTo.
parent
8081ead631
commit
22d819c903
|
@ -121,7 +121,7 @@ function click_automove(element) {
|
||||||
if ( this.checked ) {
|
if ( this.checked ) {
|
||||||
$j(this.form.elements['filter[AutoMoveTo]']).css('display', 'inline');
|
$j(this.form.elements['filter[AutoMoveTo]']).css('display', 'inline');
|
||||||
} else {
|
} 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 ) {
|
if ( this.checked ) {
|
||||||
$j(this.form.elements['filter[AutoCopyTo]']).css('display', 'inline');
|
$j(this.form.elements['filter[AutoCopyTo]']).css('display', 'inline');
|
||||||
} else {
|
} else {
|
||||||
this.form.elements['filter[AutoCopyTo]'].hide();
|
$j(this.form.elements['filter[AutoCopyTo]']).hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue