Documentation for a historical release of Infusion: 1.4
Please view the Infusion Documentation site for the latest documentation, or the Infusion 1.3. Documentation for the previous release.
If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.

fluid.renderer.mergeComponents

This functionality is Sneak Peek status. This means that the APIs may change. We welcome your feedback, ideas, and code, but please use caution if you use this new functionality.

fluid.renderer.mergeComponents(target, source)

A special "shallow copy" operation suitable for nondestructively merging trees of components. jQuery.extend in shallow mode will neglect null valued properties.

fluid.renderer.mergeComponents(target, source);

File name: RendererUtilities.js

Parameters

target (Object) The destination for the copy
source (Object) The object to copy

Return Value

Object The filled-in target object

See Also


Example

example here

In this example, description here...