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
bd314791
Commit
bd314791
authored
Feb 28, 2014
by
techird
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
342bbdc9
0830fc5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
editor.receiver.js
src/module/editor.receiver.js
+1
-1
layout.bottom.js
src/module/layout.bottom.js
+5
-3
No files found.
src/module/editor.receiver.js
View file @
bd314791
...
...
@@ -92,7 +92,7 @@ Minder.Receiver = kity.createClass('Receiver',{
return
;
}
var
text
=
(
this
.
container
.
textContent
||
this
.
container
.
innerText
)
.
replace
(
/
\u
200b/g
,
''
);
var
text
=
this
.
container
.
textContent
.
replace
(
/
\u
200b/g
,
''
);
if
(
this
.
textShape
.
getOpacity
()
==
0
){
this
.
textShape
.
setOpacity
(
1
);
...
...
src/module/layout.bottom.js
View file @
bd314791
...
...
@@ -504,9 +504,11 @@ KityMinder.registerModule( "LayoutBottom", function () {
Layout
.
connect
=
null
;
Layout
.
shicon
=
null
;
}
else
{
_buffer
[
0
].
getRenderContainer
().
remove
();
Layout
.
connect
.
remove
();
if
(
Layout
.
shicon
)
Layout
.
shicon
.
remove
();
try
{
_buffer
[
0
].
getRenderContainer
().
remove
();
Layout
.
connect
.
remove
();
if
(
Layout
.
shicon
)
Layout
.
shicon
.
remove
();
}
catch
(
error
)
{}
}
_buffer
=
_buffer
.
concat
(
_buffer
[
0
].
getChildren
()
);
_buffer
.
shift
();
...
...
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