Layout.getSkinPath ()
walk up the layout hierarchy and add all skinmgr to an array

  • Returns
    Object Array containing skinmgr objects
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:   }