mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Fix typo breaking the setting of autocomplete params
This commit is contained in:
parent
a3b903b75c
commit
d6916b3580
@ -484,7 +484,7 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR
|
|||||||
{
|
{
|
||||||
return_value = [];
|
return_value = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Turn on local filtering, or trust server to do it
|
// Turn on local filtering, or trust server to do it
|
||||||
cfg.mode = typeof return_value === 'string' ? 'remote' : 'local';
|
cfg.mode = typeof return_value === 'string' ? 'remote' : 'local';
|
||||||
|
|
||||||
@ -572,9 +572,9 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR
|
|||||||
*/
|
*/
|
||||||
set_autocomplete_params: function(_params)
|
set_autocomplete_params: function(_params)
|
||||||
{
|
{
|
||||||
if (this.options.autocomplate_params != _params)
|
if (this.options.autocomplete_params != _params)
|
||||||
{
|
{
|
||||||
this.options.autocomplate_params = _params;
|
this.options.autocomplete_params = _params;
|
||||||
|
|
||||||
if (this.taglist) this.taglist.setDataUrlParams(_params);
|
if (this.taglist) this.taglist.setDataUrlParams(_params);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user