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
26c82350
Commit
26c82350
authored
Dec 24, 2013
by
techird
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
命令锁逻辑修改
parent
9bb0158c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
13 deletions
+17
-13
minder.command.js
src/core/minder.command.js
+17
-13
No files found.
src/core/minder.command.js
View file @
26c82350
...
...
@@ -20,7 +20,7 @@ kity.extendClass( Minder, {
}
},
execCommand
:
function
(
name
)
{
var
TargetCommand
,
command
,
cmdArgs
,
eventParams
,
stoped
;
var
TargetCommand
,
command
,
cmdArgs
,
eventParams
,
stoped
,
isTopCommand
;
TargetCommand
=
this
.
_getCommand
(
name
);
if
(
!
TargetCommand
)
{
...
...
@@ -36,20 +36,23 @@ kity.extendClass( Minder, {
commandArgs
:
cmdArgs
};
this
.
_executingCommand
=
this
.
_executingCommand
||
command
;
if
(
this
.
_executingCommand
==
command
)
{
if
(
!
this
.
_executingCommand
)
{
this
.
_executingCommand
=
command
;
isTopCommand
=
true
;
}
else
{
isTopCommand
=
false
;
}
stoped
=
this
.
_fire
(
new
MinderEvent
(
'beforecommand'
,
eventParams
,
true
)
);
if
(
!
stoped
)
{
this
.
_fire
(
new
MinderEvent
(
"precommand"
,
eventParams
,
false
)
);
command
.
execute
.
apply
(
command
,
[
this
].
concat
(
cmdArgs
)
);
this
.
_fire
(
new
MinderEvent
(
"command"
,
eventParams
,
false
)
);
// 顶级命令才触发事件
if
(
isTopCommand
)
{
if
(
command
.
isContentChanged
()
)
{
this
.
_firePharse
(
new
MinderEvent
(
'contentchange'
)
);
}
...
...
@@ -58,10 +61,11 @@ kity.extendClass( Minder, {
}
this
.
_firePharse
(
new
MinderEvent
(
'interactchange'
)
);
}
}
// 顶级事件执行完毕才能清楚顶级事件的执行标记
if
(
isTopCommand
)
{
this
.
_executingCommand
=
null
;
}
else
{
command
.
execute
.
apply
(
command
,
[
this
].
concat
(
cmdArgs
)
);
}
},
...
...
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