The show() method makes the current module visible and sets the visibility mode.
show( invisibilityMode )
|
invisibilityMode |
String |
Invisibility mode string. If a mode is not specified, the mode is set to "global." |
Undefined
showDescendants: function(invisibilityMode) {
if (!this.isSwitcherLeaf) {
for (var i=0; i<this._children.length;i++) {
this._children[i].show(invisibilityMode);
this._children[i].showDescendants(invisibilityMode);
}
}
},