Layout.getSkinPath () |
walk up the layout hierarchy and add all skinmgr
to an array
|
Sourcecode in Layout/objectFunctions.js:
1: function getSkinPath() { 2: var sp = [this.skins]; 3: var handler = this; 4: while ((handler = handler.parent) != null) 5: sp.push(handler.skins); 6: return sp; 7: } |