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
138bba34
Commit
138bba34
authored
Mar 18, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
publish
parent
6434856c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
10 deletions
+20
-10
kityminder.all.js
dist/kityminder.all.js
+15
-5
kityminder.all.min.js
dist/kityminder.all.min.js
+5
-5
No files found.
dist/kityminder.all.js
View file @
138bba34
/*!
* ====================================================
* kityminder - v1.0.0 - 2014-03-1
7
* kityminder - v1.0.0 - 2014-03-1
8
* https://github.com/fex-team/kityminder
* GitHub: https://github.com/fex-team/kityminder.git
* Copyright (c) 2014 f-cube @ FEX; Licensed MIT
...
...
@@ -2714,6 +2714,11 @@ KityMinder.registerModule( "LayoutDefault", function () {
sideList
.
splice
(
index
,
1
);
}
parent
.
removeChild
(
nodes
[
0
]
);
if
(
parent
.
getType
()
!==
"root"
&&
parent
.
getChildren
().
length
===
0
)
{
var
prtLayout
=
parent
.
getLayout
();
prtLayout
.
shicon
.
remove
();
prtLayout
.
shicon
=
null
;
}
var
set
=
updateLayoutVertical
(
nodes
[
0
],
parent
,
"remove"
);
for
(
var
j
=
0
;
j
<
set
.
length
;
j
++
)
{
translateNode
(
set
[
j
]
);
...
...
@@ -2965,7 +2970,7 @@ KityMinder.registerModule( "LayoutBottom", function () {
var
sX
=
rootLayout
.
x
-
rootbranchwidth
/
2
;
for
(
var
k
=
0
;
k
<
mainnodes
.
length
;
k
++
)
{
var
mLayout
=
mainnodes
[
k
].
getLayout
();
mLayout
.
x
=
sX
;
mLayout
.
x
=
sX
+
nodeStyles
.
main
.
margin
[
3
]
+
5
;
sX
+=
mLayout
.
branchwidth
;
}
return
mainnodes
;
...
...
@@ -3258,6 +3263,11 @@ KityMinder.registerModule( "LayoutBottom", function () {
}
var
nodeLayout
=
nodes
[
0
].
getLayout
();
parent
.
removeChild
(
nodes
[
0
]
);
if
(
parent
.
getType
()
!==
"root"
&&
parent
.
getChildren
().
length
===
0
)
{
var
prtLayout
=
parent
.
getLayout
();
prtLayout
.
shicon
.
remove
();
prtLayout
.
shicon
=
null
;
}
var
set
=
updateLayoutAll
(
nodes
[
0
],
parent
,
"remove"
);
for
(
var
j
=
0
;
j
<
set
.
length
;
j
++
)
{
translateNode
(
set
[
j
]
);
...
...
@@ -3916,10 +3926,10 @@ KityMinder.registerModule( "KeyboardModule", function () {
var
pointIndexes
=
[],
p
;
root
.
traverse
(
function
(
node
)
{
p
=
node
.
get
Data
(
'point
'
);
p
=
node
.
get
RenderContainer
().
getRenderBox
(
'top
'
);
pointIndexes
.
push
(
{
x
:
p
.
x
,
y
:
p
.
y
,
x
:
p
.
x
+
p
.
width
/
2
,
y
:
p
.
y
+
p
.
height
/
2
,
node
:
node
}
);
}
);
...
...
dist/kityminder.all.min.js
View file @
138bba34
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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