parsing text response manually from ajax request

This commit is contained in:
Ezequiel Bergamaschi 2014-06-30 00:35:02 -03:00
parent aaf8be2f70
commit 6ab5597a82

View File

@ -38,10 +38,10 @@ mindplot.LocalStorageManager = new Class({
$.ajax({
url: this.documentUrl.replace("{id}", mapId),
type:'get',
dataType: "xml",
async:false,
success: function (responseText) {
xml = responseText;
dataType: "text",
async: false,
success:function (response) {
xml = response;
}
});
// If I could not load it from a file, hard code one.
@ -50,8 +50,7 @@ mindplot.LocalStorageManager = new Class({
}
}
var parser = new DOMParser();
return parser.parseFromString(xml, 'text/xml');
return jQuery.parseXML(xml);
},
unlockMap:function (mindmap) {