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
6b3a09ca
Commit
6b3a09ca
authored
May 06, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed
parent
1cb8fe62
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
9 deletions
+12
-9
kityminder.config.js
kityminder.config.js
+1
-1
layout.default.js
src/module/layout.default.js
+11
-8
No files found.
kityminder.config.js
View file @
6b3a09ca
...
...
@@ -84,7 +84,7 @@
//默认是全部展开,0表示全部展开
,
defaultExpand
:
{
defaultLayer
:
2
,
defaultLayer
:
3
,
defaultSubShow
:
5
}
};
...
...
src/module/layout.default.js
View file @
6b3a09ca
...
...
@@ -544,26 +544,29 @@ KityMinder.registerModule( "LayoutDefault", function () {
this
.
appendChildNode
(
_root
,
mains
[
i
]
);
}
cur_layer
++
;
//创建一级节点的副本
var
_buffer
=
(
function
()
{
var
clonelayer0
=
function
()
{
var
items
=
[];
for
(
var
i
=
0
;
i
<
mains
.
length
;
i
++
)
{
items
.
push
(
mains
[
i
]
);
}
return
items
;
}
)();
};
//创建一级节点的副本
var
_buffer
=
clonelayer0
();
next
=
[];
var
layer_nolimit
=
expandall
||
(
expand_layer
<
1
)
||
false
;
var
sub_nolimit
=
expandall
||
(
expandoptions
.
defaultSubShow
<
1
)
||
false
;
var
loopcontinue
=
function
()
{
return
(
layer_nolimit
?
(
_buffer
.
length
!==
0
)
:
(
_buffer
.
length
!==
0
&&
cur_layer
<
expand_layer
)
);
};
while
(
loopcontinue
()
)
{
while
(
_buffer
.
length
!==
0
)
{
cur_layer
++
;
var
layer_len
=
_buffer
.
length
;
for
(
var
j
=
0
;
j
<
layer_len
;
j
++
)
{
var
c
=
_buffer
[
j
].
getChildren
();
if
(
(
sub_nolimit
||
(
c
.
length
<=
expandoptions
.
defaultSubShow
)
)
&&
c
.
length
!==
0
)
{
if
(
(
(
(
sub_nolimit
||
(
c
.
length
<=
expandoptions
.
defaultSubShow
)
)
&&
(
cur_layer
<=
expand_layer
)
)
||
_buffer
[
j
].
getLayout
().
expand
)
&&
c
.
length
!==
0
)
{
this
.
expandNode
(
_buffer
[
j
]
);
_buffer
=
_buffer
.
concat
(
_buffer
[
j
].
getChildren
()
);
}
...
...
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