in content/asdoc/asdoc.js [33:70]
function configPage() {
setRowColorsInitial(true, "Property");
setRowColorsInitial(true, "Method");
setRowColorsInitial(true, "ProtectedMethod");
setRowColorsInitial(true, "Event");
setRowColorsInitial(true, "Style");
setRowColorsInitial(true, "SkinPart");
setRowColorsInitial(true, "SkinState");
setRowColorsInitial(true, "Constant");
if (isEclipse()) {
if (window.name != "classFrame")
{
var localRef = window.location.href.indexOf('?') != -1 ? window.location.href.substring(0, window.location.href.indexOf('?')) : window.location.href;
localRef = localRef.substring(localRef.indexOf("langref/") + 8);
if (window.location.search != "")
localRef += ("#" + window.location.search.substring(1));
window.location.replace(baseRef + "index.html?" + localRef);
return;
}
else
{
setStyle(".eclipseBody", "display", "block");
// var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
// if (isIE == false && window.location.hash != "")
if (window.location.hash != "")
window.location.hash=window.location.hash.substring(1);
}
}
else if (window == top) { // no frames
findObject("titleTable").style.display = "";
}
else { // frames
findObject("titleTable").style.display = "none";
}
showTitle(asdocTitle);
}