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
60722b6a
Commit
60722b6a
authored
Jul 24, 2014
by
techird
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix '/' issue
parent
038dbf11
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
expand.js
src/module/expand.js
+3
-1
No files found.
src/module/expand.js
View file @
60722b6a
...
@@ -232,7 +232,9 @@ KityMinder.registerModule('Expand', function() {
...
@@ -232,7 +232,9 @@ KityMinder.registerModule('Expand', function() {
'normal.keydown'
:
function
(
e
)
{
'normal.keydown'
:
function
(
e
)
{
if
(
this
.
getStatus
()
==
'textedit'
)
return
;
if
(
this
.
getStatus
()
==
'textedit'
)
return
;
if
(
e
.
originEvent
.
keyCode
==
keymap
[
'/'
])
{
if
(
e
.
originEvent
.
keyCode
==
keymap
[
'/'
])
{
var
expanded
=
this
.
getSelectedNode
().
isExpanded
();
var
node
=
this
.
getSelectedNode
();
if
(
!
node
)
return
;
var
expanded
=
node
.
isExpanded
();
this
.
getSelectedNodes
().
forEach
(
function
(
node
)
{
this
.
getSelectedNodes
().
forEach
(
function
(
node
)
{
if
(
expanded
)
node
.
collapse
();
if
(
expanded
)
node
.
collapse
();
else
node
.
expand
();
else
node
.
expand
();
...
...
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