Making it work in IE.

This commit is contained in:
marcins78@gmail.com
2011-09-01 11:55:49 +00:00
parent f7a34218f5
commit 8e3dfa7874
2 changed files with 4 additions and 4 deletions

View File

@@ -53,8 +53,7 @@ var GempLotrCommunication = Class.extend({
decisionValue: response}, decisionValue: response},
success: this.success, success: this.success,
error: this.failure, error: this.failure,
dataType: "xml", dataType: "xml"
crossDomain: true
}); });
} }
}); });

View File

@@ -312,8 +312,9 @@ var GempLotrUI = Class.extend({
}, },
processError: function (xhr, ajaxOptions, thrownError) { processError: function (xhr, ajaxOptions, thrownError) {
// alert("There was a problem during communication with server"); alert("There was a problem during communication with server:");
alert(xhr.status); alert(xhr);
alert(ajaxOptions);
alert(thrownError); alert(thrownError);
}, },