widget-skin.js revision 345548fa72bc0f96aa4a436f07b6bab6c6819612
var BOUNDING_BOX = "boundingBox",
CONTENT_BOX = "contentBox",
SKIN = "skin",
/**
* Returns the name of the skin that's currently applied to the widget.
* This is only really useful after the widget's DOM structure is in the
* document, either by render or by progressive enhancement. Searches up
* the Widget's ancestor axis for a class yui3-skin-(name), and returns the
* (name) portion. Otherwise, returns null.
*
* @method getSkinName
* @return {String} the name of the skin, or null (yui3-skin-sam => sam)
*/
if ( root ) {
return match;
} );
}
};