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
7538e3b9
Commit
7538e3b9
authored
May 09, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
https://github.com/fex-team/kityminder
into dev
parents
5151bab1
39fe00fb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
9 deletions
+19
-9
kity
kity
+1
-1
social.js
social/social.js
+2
-1
dropfile.js
src/module/dropfile.js
+5
-5
editor.receiver.js
src/module/editor.receiver.js
+11
-2
No files found.
kity
@
ef84b3d3
Subproject commit
afbb101c5b3d7518080bac3886f16043a482b7c9
Subproject commit
ef84b3d3597aad569379f1f76715ca5bd2c951d3
social/social.js
View file @
7538e3b9
...
...
@@ -766,9 +766,10 @@ $( function () {
}
function
bindDraft
()
{
draftManager
=
window
.
draftManager
;
if
(
!
draftManager
)
{
if
(
window
.
DraftManager
)
{
draftManager
=
new
window
.
DraftManager
(
minder
);
draftManager
=
window
.
draftManager
=
new
window
.
DraftManager
(
minder
);
}
}
...
...
src/module/dropfile.js
View file @
7538e3b9
...
...
@@ -21,8 +21,8 @@ KityMinder.registerModule( "DropFile", function () {
e
.
stopPropagation
();
var
minder
=
this
;
if
(
kity
.
Browser
.
ie
&&
Number
(
kity
.
Browser
.
version
)
<
10
)
{
alert
(
'文件导入对IE浏览器仅支持10以上版本'
);
if
(
kity
.
Browser
.
ie
&&
Number
(
kity
.
Browser
.
version
)
<
10
)
{
alert
(
'文件导入对IE浏览器仅支持10以上版本'
);
return
;
}
...
...
@@ -49,9 +49,9 @@ KityMinder.registerModule( "DropFile", function () {
createDraft
(
this
);
social
.
setRemotePath
(
null
,
false
);
this
.
execCommand
(
'camera'
,
this
.
getRoot
()
);
setTimeout
(
function
()
{
setTimeout
(
function
()
{
social
.
watchChanges
(
true
);
},
10
);
},
10
);
importing
=
false
;
}
...
...
@@ -73,7 +73,7 @@ KityMinder.registerModule( "DropFile", function () {
}
function
createDraft
(
minder
)
{
draftManager
=
window
.
draftManager
;
draftManager
=
window
.
draftManager
||
(
window
.
draftManager
=
new
window
.
DraftManager
(
minder
)
)
;
draftManager
.
create
();
}
...
...
src/module/editor.receiver.js
View file @
7538e3b9
...
...
@@ -241,8 +241,17 @@ 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
()
});
}
return
this
;
},
getTextOffsetData
:
function
()
{
...
...
@@ -253,7 +262,7 @@ Minder.Receiver = kity.createClass( 'Receiver', {
try
{
var
box
=
this
.
textShape
.
getExtentOfChar
(
i
);
}
catch
(
e
)
{
debugger
console
.
log
(
e
)
}
this
.
textData
.
push
(
{
...
...
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