mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-10 17:23:23 +01:00
fix local storage manager
This commit is contained in:
parent
b5d1bbaa5b
commit
8263b1abeb
@ -36,11 +36,11 @@ mindplot.LocalStorageManager = new Class({
|
||||
var xml = localStorage.getItem(mapId + "-xml");
|
||||
if (xml == null || this.forceLoad) {
|
||||
$.ajax({
|
||||
url:this.documentUrl.replace("{id}", mapId),
|
||||
headers:{"Content-Type":"text/plain","Accept":"application/xml"},
|
||||
method:'get',
|
||||
url: this.documentUrl.replace("{id}", mapId),
|
||||
type:'get',
|
||||
dataType: "xml",
|
||||
async:false,
|
||||
success:function (responseText) {
|
||||
success: function (responseText) {
|
||||
xml = responseText;
|
||||
}
|
||||
});
|
||||
@ -49,7 +49,9 @@ mindplot.LocalStorageManager = new Class({
|
||||
throw new Error("Map could not be loaded");
|
||||
}
|
||||
}
|
||||
return xml;
|
||||
|
||||
var parser = new DOMParser();
|
||||
return parser.parseFromString(xml, 'text/xml');
|
||||
},
|
||||
|
||||
unlockMap:function (mindmap) {
|
||||
|
Loading…
Reference in New Issue
Block a user