forked from extern/egroupware
Change default value for async json_request to true
This commit is contained in:
parent
246abdbb1c
commit
cceba01f87
@ -67,7 +67,7 @@ egw.extend('json', egw.MODULE_WND_LOCAL, function(_app, _wnd)
|
|||||||
// as objects and loosing parameters which are undefined
|
// as objects and loosing parameters which are undefined
|
||||||
// JSON.strigify([123,undefined]) --> '{"0":123}' instead of '[123,null]'
|
// JSON.strigify([123,undefined]) --> '{"0":123}' instead of '[123,null]'
|
||||||
this.parameters = _parameters ? [].concat(_parameters) : [];
|
this.parameters = _parameters ? [].concat(_parameters) : [];
|
||||||
this.async = _async ? _async : false;
|
this.async = _async ? _async : true;
|
||||||
this.callback = _callback ? _callback : null;
|
this.callback = _callback ? _callback : null;
|
||||||
this.context = _context ? _context : null;
|
this.context = _context ? _context : null;
|
||||||
this.sender = _sender ? _sender : null;
|
this.sender = _sender ? _sender : null;
|
||||||
|
Loading…
Reference in New Issue
Block a user