This documentation is currently being moved to our new documentation site.

Please view or edit the documentation there, instead.

If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

fluid.copy(tocopy)

Performs a deep copy (clone) of the object passed in the argument.

fluid.copy(tocopy);

File name: Fluid.js

Parameters

tocopy (Object) The object to be copied

Return Value

Object The copied object

See Also


Notes

This function recursively copies the contents of tocopy into a new object of the same type.

Example

var oldModel = fluid.copy(that.model);

In this example, fluid.copy() is being used to preserve a copy of a model. This can be useful for scenarios where some kind of 'revert' or 'undo' might be desirable.

  • No labels