Fix logout error handler

Looks like a missed edit.
This commit is contained in:
Gavin Lambert 2013-06-10 23:28:36 +12:00
parent 07d87c9c91
commit 84d191d30c
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ cah.ajax.SuccessHandlers[cah.$.AjaxOperation.LOG_OUT] = function(data) {
window.location.reload();
};
cah.ajax.ErrorHandlers[cah.$.AjaxOperation.LOG_OUT] = cah.ajax.SuccessHandlers.logout;
cah.ajax.ErrorHandlers[cah.$.AjaxOperation.LOG_OUT] = cah.ajax.SuccessHandlers[cah.$.AjaxOperation.LOG_OUT];
cah.ajax.SuccessHandlers[cah.$.AjaxOperation.NAMES] = function(data) {
cah.log.status("Currently connected: " + data[cah.$.AjaxResponse.NAMES].join(", "));