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},
success: this.success,
error: this.failure,
dataType: "xml",
crossDomain: true
dataType: "xml"
});
}
});

View File

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