We have a custom skin that we copy into a root dir in our war. Previously we've just called "setSkinDir" in the top of our load_skin, like this:
However, when i look in load_skin now there is something else
So, i'm just wondering if i need to do this, is "currentSkin" needed anywhere or can i remove it and just call setSkinDir like i've done in previous versions?
Code:
isc.Page.setSkinDir("skins/theSkin/");
Code:
var currentSkin = isc.setCurrentSkin({ // name is autoderived to be the containing folder name: "autoDetect" });
Comment