mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-24 14:29:28 +00:00
Monotone-Parent: 9d07dc2dfdd810c4a1b91b9837f778527a330d96
Monotone-Revision: 88b79b72766239b6ea1ac581133967539b7f9f27 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-11-16T18:55:28 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -262,19 +262,23 @@ function onCASRecoverIFrameLoaded(event) {
|
||||
if (this.request) {
|
||||
var request = this.request;
|
||||
if (request.attempt == 0) {
|
||||
triggerAjaxRequest(request.url,
|
||||
request.callback,
|
||||
request.callbackData,
|
||||
request.content,
|
||||
request.paramHeaders,
|
||||
1);
|
||||
window.setTimeout(function() {
|
||||
triggerAjaxRequest(request.url,
|
||||
request.callback,
|
||||
request.callbackData,
|
||||
request.content,
|
||||
request.paramHeaders,
|
||||
1); },
|
||||
100);
|
||||
}
|
||||
else {
|
||||
window.location.href = UserFolderURL;
|
||||
}
|
||||
this.request = null;
|
||||
}
|
||||
this.parentNode.removeChild(this);
|
||||
var this_ = this;
|
||||
window.setTimeout(function() { this_.parentNode.removeChild(this_); },
|
||||
500);
|
||||
}
|
||||
|
||||
function onAjaxRequestStateChange(http) {
|
||||
|
||||
Reference in New Issue
Block a user