mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
parsing text response manually from ajax request
This commit is contained in:
parent
aaf8be2f70
commit
6ab5597a82
@ -38,10 +38,10 @@ mindplot.LocalStorageManager = new Class({
|
|||||||
$.ajax({
|
$.ajax({
|
||||||
url: this.documentUrl.replace("{id}", mapId),
|
url: this.documentUrl.replace("{id}", mapId),
|
||||||
type:'get',
|
type:'get',
|
||||||
dataType: "xml",
|
dataType: "text",
|
||||||
async:false,
|
async: false,
|
||||||
success: function (responseText) {
|
success:function (response) {
|
||||||
xml = responseText;
|
xml = response;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// If I could not load it from a file, hard code one.
|
// 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 jQuery.parseXML(xml);
|
||||||
return parser.parseFromString(xml, 'text/xml');
|
|
||||||
},
|
},
|
||||||
|
|
||||||
unlockMap:function (mindmap) {
|
unlockMap:function (mindmap) {
|
||||||
|
Loading…
Reference in New Issue
Block a user