fix local storage manager

This commit is contained in:
Ezequiel Bergamaschi 2014-06-22 23:46:36 -03:00
parent 2166dd9504
commit aaf8be2f70

View File

@ -36,11 +36,11 @@ mindplot.LocalStorageManager = new Class({
var xml = localStorage.getItem(mapId + "-xml"); var xml = localStorage.getItem(mapId + "-xml");
if (xml == null || this.forceLoad) { if (xml == null || this.forceLoad) {
$.ajax({ $.ajax({
url:this.documentUrl.replace("{id}", mapId), url: this.documentUrl.replace("{id}", mapId),
headers:{"Content-Type":"text/plain","Accept":"application/xml"}, type:'get',
method:'get', dataType: "xml",
async:false, async:false,
success:function (responseText) { success: function (responseText) {
xml = responseText; xml = responseText;
} }
}); });
@ -49,7 +49,9 @@ mindplot.LocalStorageManager = new Class({
throw new Error("Map could not be loaded"); throw new Error("Map could not be loaded");
} }
} }
return xml;
var parser = new DOMParser();
return parser.parseFromString(xml, 'text/xml');
}, },
unlockMap:function (mindmap) { unlockMap:function (mindmap) {