mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Get CC search working for et2
This commit is contained in:
parent
6689578d52
commit
2bb8169ded
@ -8,7 +8,7 @@ function add_email_from_ab(ab_id,info_cc)
|
||||
|
||||
if (!ab || !ab.value)
|
||||
{
|
||||
set_style_by_class('tr','hiddenRow','display','block');
|
||||
jQuery("tr.hiddenRow").css("display", "block");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -21,7 +21,7 @@ function add_email_from_ab(ab_id,info_cc)
|
||||
cc.value += (cc.value?', ':'')+ab.options[i].text.replace(/^.* <(.*)>$/,'$1');
|
||||
ab.value = '';
|
||||
ab.onchange();
|
||||
set_style_by_class('tr','hiddenRow','display','none');
|
||||
jQuery("tr.hiddenRow").css("display", "none");
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user