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.computeNickName

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.computeNickName(typeName)

Compute a "nickname" given a fully qualified typename, by returning the last path segment.

fluid.computeNickName(typeName);

File name: FileName.js

Parameters

typeName (Type) description

Return Value

String The last path segment of the specified typeName

See Also


Examples

var shortName = fluid.computeNickName("fluid.uiOptions");

In this example, shortName would have a value of "uiOptions."

var nick = fluid.computeNickName("cspace.autocomplete.popup");

In this example, nick would have a value of "popup."