mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 04:41:41 +02:00
fixed error if argument was a widget, using jQuery.extend instead not existing clone()
This commit is contained in:
parent
6844f527d7
commit
b8aa28c055
@ -107,7 +107,7 @@ egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
|||||||
// for Class we try removing _parent and _children attributes and try again to stringify
|
// for Class we try removing _parent and _children attributes and try again to stringify
|
||||||
if (data.args[i] instanceof Class)
|
if (data.args[i] instanceof Class)
|
||||||
{
|
{
|
||||||
data.args[i] = clone(data.args[i]);
|
data.args[i] = jQuery.extend({}, data.args[i]);
|
||||||
delete data.args[i]._parent;
|
delete data.args[i]._parent;
|
||||||
delete data.args[i]._children;
|
delete data.args[i]._children;
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user