var urlString = top.location.toString();
var sURL = '/itservices?id=sc_cat_item&sys_id=c49e7aac1b715090b37e997e0d4bxxxx';
//alert(urlString);
if (urlString.indexOf('itservices') > -1) {//--service portal
location.href = sURL;
}else{//--assume it's classic UI
sURL="/nav_to.do?uri=%2Fcom.glideapp.servicecatalog_cat_item_view.do%3Fv%3D1%26sysparm_id%3Dc49e7aac1b715090b37e997e0d4bxxxx";
top.window.location =sURL;
}
above is an older attempt,
Better alternative to checking the url: use to determine if portal > if (typeof spModal != 'undefined') {
Better alternative to top.location.toString(); >
Comments
Post a Comment