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
aa56e354
Commit
aa56e354
authored
May 09, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grunt
parent
569b6c2b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
24 deletions
+38
-24
index.html
dist/index.html
+11
-11
kityminder.all.js
dist/kityminder.all.js
+25
-11
kityminder.all.min.js
dist/kityminder.all.min.js
+2
-2
No files found.
dist/index.html
View file @
aa56e354
...
...
@@ -7,26 +7,26 @@
<meta
name=
"description"
content=
"百度脑图,便捷的脑图编辑工具。让您在线上直接创建、保存并分享你的思路。"
>
<script
src=
"lib/jquery-2.1.0.min.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lib/ZeroClipboard.min.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lib/jquery-2.1.0.min.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"lib/ZeroClipboard.min.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
type=
"text/javascript"
>
ZeroClipboard
.
setDefaults
(
{
moviePath
:
'lib/ZeroClipboard.swf'
}
);
</script>
<script
src=
"lib/kitygraph.all.min.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"kityminder.all.min.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"kityminder.config.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lang/zh-cn/zh-cn.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lib/kitygraph.all.min.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"kityminder.all.min.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"kityminder.config.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"lang/zh-cn/zh-cn.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"lib/zip.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lib/zip.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script>
zip
.
inflateJSPath
=
'lib/inflate.js'
;
</script>
<script
src=
"lib/jquery.xml2json.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lib/baidu-frontia-js-full-1.0.0.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"social/draftmanager.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"social/social.js?_=13996
15757955
"
charset=
"utf-8"
></script>
<script
src=
"lib/jquery.xml2json.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"lib/baidu-frontia-js-full-1.0.0.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"social/draftmanager.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<script
src=
"social/social.js?_=13996
23775833
"
charset=
"utf-8"
></script>
<link
href=
"social/social.css"
rel=
"stylesheet"
>
<link
href=
"themes/default/css/import.css"
type=
"text/css"
rel=
"stylesheet"
/>
...
...
dist/kityminder.all.js
View file @
aa56e354
...
...
@@ -2915,7 +2915,7 @@ KityMinder.registerModule( "LayoutDefault", function () {
}
for
(
var
i
=
0
;
i
<
children
.
length
;
i
++
)
{
var
childLayout
=
children
[
i
].
getLayout
();
if
(
children
[
i
].
getRenderContainer
().
getHeight
()
!==
0
)
if
(
children
[
i
].
getRenderContainer
().
get
Paper
()
&&
children
[
i
].
getRenderContainer
().
get
Height
()
!==
0
)
sum
+=
childLayout
.
branchheight
;
}
return
sum
;
...
...
@@ -5619,17 +5619,25 @@ Minder.Receiver = kity.createClass( 'Receiver', {
},
setContainerStyle
:
function
()
{
var
textShapeBox
=
this
.
getBaseOffset
(
'screen'
);
var
me
=
this
;
this
.
container
.
style
.
cssText
=
";left:"
+
textShapeBox
.
x
+
'px;top:'
+
(
textShapeBox
.
y
-
5
)
+
'px;width:'
+
textShapeBox
.
width
+
'px;height:'
+
textShapeBox
.
height
+
'px;'
;
var
paperContainer
=
this
.
km
.
getPaper
();
var
width
=
paperContainer
.
getWidth
();
var
height
=
paperContainer
.
getHeight
();
var
containerWidth
=
this
.
container
.
offsetWidth
;
if
(
width
<
containerWidth
+
this
.
container
.
offsetLeft
){
this
.
km
.
getRenderContainer
().
fxTranslate
(
width
/-
2
,
0
,
200
,
"ease"
,
0
,
function
()
{
me
.
setContainerStyle
()
});
if
(
!
this
.
selection
.
isShow
()){
var
paperContainer
=
this
.
km
.
getPaper
();
var
width
=
paperContainer
.
node
.
parentNode
.
clientWidth
;
var
height
=
paperContainer
.
node
.
parentNode
.
clientHeight
;
if
(
width
<
this
.
container
.
offsetWidth
+
this
.
container
.
offsetLeft
){
this
.
km
.
getRenderContainer
().
translate
(
width
/-
3
,
0
);
//this.setContainerStyle();
console
.
log
(
width
,
this
.
container
.
offsetWidth
+
this
.
container
.
offsetLeft
);
}
else
if
(
height
<
this
.
container
.
offsetTop
+
this
.
container
.
offsetHeight
){
this
.
km
.
getRenderContainer
().
translate
(
0
,
height
/-
3
);
//this.setContainerStyle()
}
}
return
this
;
},
getTextOffsetData
:
function
()
{
...
...
@@ -5782,6 +5790,7 @@ Minder.Selection = kity.createClass( 'Selection', {
this
.
startOffset
=
this
.
endOffset
=
0
;
this
.
setOpacity
(
0.5
);
this
.
setStyle
(
'cursor'
,
'text'
);
this
.
_show
=
false
;
},
collapse
:
function
(
toEnd
){
...
...
@@ -5855,11 +5864,13 @@ Minder.Selection = kity.createClass( 'Selection', {
setHide
:
function
()
{
clearInterval
(
this
.
timer
);
this
.
setStyle
(
'display'
,
'none'
);
this
.
_show
=
false
;
return
this
;
},
setShowHold
:
function
()
{
clearInterval
(
this
.
timer
);
this
.
setStyle
(
'display'
,
''
);
this
.
_show
=
true
;
return
this
;
},
setShow
:
function
()
{
...
...
@@ -5867,7 +5878,7 @@ Minder.Selection = kity.createClass( 'Selection', {
var
me
=
this
,
state
=
''
;
me
.
setStyle
(
'display'
,
''
);
me
.
_show
=
true
;
if
(
this
.
collapsed
){
me
.
setOpacity
(
1
);
this
.
timer
=
setInterval
(
function
()
{
...
...
@@ -5878,6 +5889,9 @@ Minder.Selection = kity.createClass( 'Selection', {
return
this
;
},
isShow
:
function
(){
return
this
.
_show
;
},
setTextShape
:
function
(
text
)
{
if
(
!
text
)
{
this
.
text
=
new
kity
.
Text
();
...
...
dist/kityminder.all.min.js
View file @
aa56e354
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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