mixin

adds properties of the 'source' object into the 'target' object

void mixin(object target,object source, [boolean force] );
targetobjectthe target object
sourceobjectthe source object
forcebooleanoptional, if true, properties of the 'source' will overwrite matching properties of the 'target', if there are any. If false (by default), properties that already exist in the 'target' will be omitted

Example

gantt.mixin(target, source, force);

Change log

added in version 4.0

Back to top