mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Minor fix.
This commit is contained in:
parent
c078b7bd6b
commit
5fc6c19ef4
@ -273,7 +273,9 @@ mindplot.XMLMindmapSerializer_Beta = new Class({
|
||||
},
|
||||
|
||||
_deserializeIcon : function(domElem, topic) {
|
||||
return topic.createIcon(domElem.getAttribute("id"));
|
||||
var icon = domElem.getAttribute("id");
|
||||
icon = icon.replace("images/", "icons/legacy/");
|
||||
return topic.createIcon(icon);
|
||||
},
|
||||
|
||||
_deserializeLink : function(domElem, topic) {
|
||||
|
@ -341,7 +341,9 @@ mindplot.XMLMindmapSerializer_Pela = new Class({
|
||||
},
|
||||
|
||||
_deserializeIcon : function(domElem, topic) {
|
||||
return topic.createIcon(domElem.getAttribute("id"));
|
||||
var icon = domElem.getAttribute("id");
|
||||
icon = icon.replace("images/","icons/legacy/");
|
||||
return topic.createIcon(icon);
|
||||
},
|
||||
|
||||
_deserializeLink : function(domElem, topic) {
|
||||
|
Loading…
Reference in New Issue
Block a user