Commit 8f05ba07 authored by Akikonata's avatar Akikonata

Merge branch 'dev' of github.com:fex-team/kityminder into dev

parents d482e4c7 1c9507bf
...@@ -41,6 +41,11 @@ KityMinder.registerProtocal( 'freemind', function () { ...@@ -41,6 +41,11 @@ KityMinder.registerProtocal( 'freemind', function () {
} }
} }
// 处理超链接
if(topic.LINK){
obj.data.hyperlink = topic.LINK;
}
//处理子节点 //处理子节点
if( topic.node ){ if( topic.node ){
......
...@@ -43,6 +43,11 @@ KityMinder.registerProtocal( 'mindmanager', function () { ...@@ -43,6 +43,11 @@ KityMinder.registerProtocal( 'mindmanager', function () {
} }
} }
// 处理超链接
if ( topic.Hyperlink ) {
obj.data.hyperlink = topic.Hyperlink.Url;
}
//处理子节点 //处理子节点
if ( topic.SubTopics && topic.SubTopics.Topic ) { if ( topic.SubTopics && topic.SubTopics.Topic ) {
......
...@@ -48,6 +48,11 @@ KityMinder.registerProtocal( 'xmind', function () { ...@@ -48,6 +48,11 @@ KityMinder.registerProtocal( 'xmind', function () {
} }
} }
// 处理超链接
if(topic['xlink:href']){
obj.data.hyperlink = topic['xlink:href'];
}
//处理子节点 //处理子节点
if( topic.children && topic.children.topics && topic.children.topics.topic ){ if( topic.children && topic.children.topics && topic.children.topics.topic ){
var tmp = topic.children.topics.topic; var tmp = topic.children.topics.topic;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment