//$Id$
//Added to redirect the user to Reports port, even when the user accesses IAM (8200) by mistake.
/* jQuery(document).ready(function() {
if (location.pathname == '/u/h') {
if (location.hash != '#profile/useremails'){
location.href = 'https://'+location.hostname+':8443';
}
$(window).on('hashchange', function() {
if (location.hash != '#profile/useremails' && location.pathname == '/u/h'){
location.href = 'https://'+location.hostname+':8443';
}
});
}
});
//$Id$
//Added to redirect the user to Reports port, even when the user accesses IAM (8200) by mistake.
jQuery(document).ready(function() {
if (location.pathname == '/u/h') {
if (location.hash != '#profile/useremails'){
location.href = 'https://'+location.hostname+':8443';
}
$(window).on('hashchange', function() {
if (location.hash != '#profile/useremails' && location.pathname == '/u/h'){
location.href = 'https://'+location.hostname+':8443';
}
});
}
}); */