-
Notifications
You must be signed in to change notification settings - Fork 300
Close chat window on logout
Frug edited this page Oct 11, 2012
·
1 revision
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); }