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
d4801e20
Commit
d4801e20
authored
Dec 02, 2014
by
techird
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixes
parent
2793e370
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
kity
lib/kity
+1
-1
select.js
src/core/select.js
+2
-1
progress.js
src/module/progress.js
+1
-1
No files found.
kity
@
37bf46da
Subproject commit
b1fcdefccfb10ab2d1dce672a07bced54e05f949
Subproject commit
37bf46da77a793cba3dde1a78dd83918c12f94ae
src/core/select.js
View file @
d4801e20
...
...
@@ -134,7 +134,8 @@ define(function(require, exports, module) {
kity
.
extendClass
(
MinderNode
,
{
isSelected
:
function
()
{
return
this
.
getMinder
().
getSelectedNodes
().
indexOf
(
this
)
!=
-
1
;
var
minder
=
this
.
getMinder
();
return
minder
&&
minder
.
getSelectedNodes
().
indexOf
(
this
)
!=
-
1
;
}
});
...
...
src/module/progress.js
View file @
d4801e20
...
...
@@ -22,7 +22,7 @@ define(function(require, exports, module) {
// jscs:disable maximumLineLength
var
FRAME_PATH
=
'M10,0C4.477,0,0,4.477,0,10c0,5.523,4.477,10,10,10s10-4.477,10-10C20,4.477,15.523,0,10,0zM10,18c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S14.418,18,10,18z'
;
var
FRAME_GRAD
=
new
kity
.
LinearGradient
Brush
().
pipe
(
function
(
g
)
{
var
FRAME_GRAD
=
new
kity
.
LinearGradient
().
pipe
(
function
(
g
)
{
g
.
setStartPosition
(
0
,
0
);
g
.
setEndPosition
(
0
,
1
);
g
.
addStop
(
0
,
'#fff'
);
...
...
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