Commit 92fd1f64 authored by techird's avatar techird

版本兼容

parent 10751361
...@@ -13,7 +13,12 @@ Utils.extend(KityMinder, { ...@@ -13,7 +13,12 @@ Utils.extend(KityMinder, {
/* 脑图数据升级 */ /* 脑图数据升级 */
function c_120_130(json) { function c_120_130(json) {
traverse(json, function(node) {
var data = node.data;
delete data.layout_bottom_offset;
delete data.layout_default_offset;
delete data.layout_filetree_offset;
});
} }
/** /**
...@@ -57,6 +62,8 @@ Utils.extend(KityMinder, { ...@@ -57,6 +62,8 @@ Utils.extend(KityMinder, {
case '1.1.3': case '1.1.3':
c_113_120(json); c_113_120(json);
case '1.2.0': case '1.2.0':
case '1.2.1':
c_120_130(json);
} }
return json; return json;
......
...@@ -38,6 +38,8 @@ KityMinder.registerModule( "ClipboardModule", function () { ...@@ -38,6 +38,8 @@ KityMinder.registerModule( "ClipboardModule", function () {
execute: function(km) { execute: function(km) {
var ancestors = km.getSelectedAncestors(); var ancestors = km.getSelectedAncestors();
if (ancestors.length === 0) return;
sendToClipboard(ancestors); sendToClipboard(ancestors);
km.select(MinderNode.getCommonAncestor(ancestors), true); km.select(MinderNode.getCommonAncestor(ancestors), true);
......
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