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
b8955dbe
Commit
b8955dbe
authored
May 06, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of github.com:fex-team/kityminder into dev
parents
1d69ff72
292e6580
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
19 deletions
+3
-19
markers.js
dialogs/markers/markers.js
+0
-17
adapter.js
src/adapter/adapter.js
+1
-1
layout.js
src/module/layout.js
+2
-1
No files found.
dialogs/markers/markers.js
View file @
b8955dbe
...
...
@@ -43,23 +43,6 @@
$w
.
find
(
"li[type='progress'][value='"
+
valPro
+
"']"
).
addClass
(
"active"
);
}
);
},
buttons
:
{
'ok'
:
{
exec
:
function
(
km
,
$w
)
{
var
href
=
$
(
'#kmui-link-Jhref'
).
val
().
replace
(
/^
\s
+|
\s
+$/g
,
''
);
if
(
href
)
{
km
.
execCommand
(
'link'
,
{
'href'
:
href
,
'target'
:
$
(
"#kmui-link-Jtarget:checked"
).
length
?
"_blank"
:
'_self'
,
'title'
:
$
(
"#kmui-link-Jtitle"
).
val
().
replace
(
/^
\s
+|
\s
+$/g
,
''
),
'_href'
:
href
}
);
}
}
},
'cancel'
:
{}
},
width
:
200
}
)
...
...
src/adapter/adapter.js
View file @
b8955dbe
...
...
@@ -126,7 +126,7 @@ utils.extend( KityMinder, function () {
km
.
fire
(
'selectionclear'
);
pro
.
initContent
(
km
,
$widget
);
//在dialog上阻止键盘冒泡,导致跟编辑输入冲突的问题
$widget
.
on
(
'keydown keyup keypress
mousedown mouseup
'
,
function
(
e
){
$widget
.
on
(
'keydown keyup keypress'
,
function
(
e
){
e
.
stopPropagation
()
});
if
(
!
pro
.
_preventDefault
)
{
...
...
src/module/layout.js
View file @
b8955dbe
...
...
@@ -254,7 +254,8 @@ KityMinder.registerModule( "LayoutModule", function () {
target
.
clearLayout
();
var
sourceLayout
=
source
.
getLayout
();
var
targetLayout
=
target
.
getLayout
();
targetLayout
.
expand
=
sourceLayout
.
expand
;
targetLayout
.
expand
=
utils
.
clone
(
sourceLayout
.
expand
);
console
.
log
(
targetLayout
);
}
},
...
...
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