hello
I'm working with get.it 4.2.3 and sc 6.1.5
I need to close the window iexplorer when anyone close the sesion on get.it
I find this script (onLogout()) on the file globals.js
I try this to close the window but it doesn't work
function onLogout(){
if( logoutInvokeArray.length > 0 ){
var i;
for( i = 0; i < logoutInvokeArray.length; ++i ){
if( logoutInvokeArray[i] != "" )
eval( logoutInvokeArray[i] );
}
}
closeChildWindows();
if( top.getit_main ){
top.getit_main.location.href = top._LogoutPage;
}
else{
top.location.href= top._LogoutPage;
}
if ( top.getit_main_head.document.getElementById('user' )){
top.getit_main_head.document.getElementById('user' ).innerHTML = "";
}
window.close(); #this is added by me
self.close(); #this is added by me
}
Can anyone help me?
thanks a lot


Reply With Quote
Bookmarks