Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
29b4f267
Commit
29b4f267
authored
Jul 22, 2015
by
张博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modified decodeData
parent
3719ebde
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
11 deletions
+7
-11
bower.json
bower.json
+1
-1
kityminder.core.js
dist/kityminder.core.js
+1
-3
kityminder.core.min.js
dist/kityminder.core.min.js
+4
-4
data.js
src/core/data.js
+1
-3
No files found.
bower.json
View file @
29b4f267
...
...
@@ -2,7 +2,7 @@
"name"
:
"kityminder-core"
,
"title"
:
"Kity Minder Core"
,
"description"
:
"Powerful online mind graphic visualization and editor (command based)"
,
"version"
:
"1.4.1
1
"
,
"version"
:
"1.4.1
2
"
,
"main"
:
[
"release/kityminder.core.min.js"
,
"release/kityminder.core.css"
...
...
dist/kityminder.core.js
View file @
29b4f267
...
...
@@ -883,9 +883,7 @@ _p[11] = {
};
// 导入前抛事件
this
.
_fire
(
new
MinderEvent
(
"beforeimport"
,
params
));
return
Promise
.
resolve
(
protocol
.
decode
(
data
,
this
,
option
)).
then
(
function
(
json
)
{
return
json
;
});
return
Promise
.
resolve
(
protocol
.
decode
(
data
,
this
,
option
));
}
});
}
...
...
dist/kityminder.core.min.js
View file @
29b4f267
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/core/data.js
View file @
29b4f267
...
...
@@ -245,9 +245,7 @@ define(function(require, exports, module) {
// 导入前抛事件
this
.
_fire
(
new
MinderEvent
(
'beforeimport'
,
params
));
return
Promise
.
resolve
(
protocol
.
decode
(
data
,
this
,
option
)).
then
(
function
(
json
)
{
return
json
;
});
return
Promise
.
resolve
(
protocol
.
decode
(
data
,
this
,
option
))
}
});
});
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment