mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 02:42:30 +02:00
Gantt chart progress
This commit is contained in:
@ -688,8 +688,13 @@ etemplate2.prototype.getValues = function(_root)
|
||||
// Store the value of the widget and reset its dirty flag
|
||||
if (value !== null)
|
||||
{
|
||||
// Namespaced container has its own value, don't put it down one more level
|
||||
if (_widget.createNamespace)
|
||||
{
|
||||
jQuery.extend(_target,value);
|
||||
}
|
||||
// Merge, if possible (link widget)
|
||||
if(typeof _target[id] == 'object' && typeof value == 'object')
|
||||
else if(typeof _target[id] == 'object' && typeof value == 'object')
|
||||
{
|
||||
_target[id] = jQuery.extend({},_target[id],value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user