Skip to content

Close chat window on logout

Frug edited this page Oct 11, 2012 · 1 revision

How to close the chat window on logout

By default, the chat redirects you to the login page if you logout (by sending the /quit command or click on the Logout button).

If you want the chat window to close instead, override the method ajaxChat.handleLogout by adding the following code to js/custom.js:

ajaxChat.handleLogout = function(url) {
   setTimeout("window.close()", 1);
}