mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 04:41:41 +02:00
Fix attribute defaults getting changed, options no longer get copied across selectboxes
This commit is contained in:
parent
01e92100c4
commit
7f9bbe99a3
@ -82,7 +82,7 @@ var et2_selectbox = et2_inputWidget.extend({
|
|||||||
var content_options = this.getArrayMgr("sel_options").getEntry(this.id);
|
var content_options = this.getArrayMgr("sel_options").getEntry(this.id);
|
||||||
if(_attrs["select_options"] && content_options)
|
if(_attrs["select_options"] && content_options)
|
||||||
{
|
{
|
||||||
_attrs["select_options"] = jQuery.merge(_attrs["select_options"],content_options);
|
_attrs["select_options"] = jQuery.extend({},_attrs["select_options"],content_options);
|
||||||
} else if (content_options) {
|
} else if (content_options) {
|
||||||
_attrs["select_options"] = content_options;
|
_attrs["select_options"] = content_options;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user