Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
735acb3b
Commit
735acb3b
authored
May 24, 2017
by
SergeyLuzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
send sizes on event asc_onSignatureClick
parent
94390573
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
common/Drawings/DrawingObjectsHandlers.js
common/Drawings/DrawingObjectsHandlers.js
+1
-1
word/Editor/GraphicObjects/GraphicObjects.js
word/Editor/GraphicObjects/GraphicObjects.js
+2
-2
No files found.
common/Drawings/DrawingObjectsHandlers.js
View file @
735acb3b
...
@@ -690,7 +690,7 @@ function handleInlineHitNoText(drawing, drawingObjects, e, x, y, pageIndex, bInS
...
@@ -690,7 +690,7 @@ function handleInlineHitNoText(drawing, drawingObjects, e, x, y, pageIndex, bInS
drawingObjects
.
handleOleObjectDoubleClick
(
drawing
.
parent
,
drawing
,
e
,
x
,
y
,
pageIndex
);
drawingObjects
.
handleOleObjectDoubleClick
(
drawing
.
parent
,
drawing
,
e
,
x
,
y
,
pageIndex
);
}
}
else
if
(
drawing
.
signatureLine
&&
drawingObjects
.
handleSignatureDblClick
){
else
if
(
drawing
.
signatureLine
&&
drawingObjects
.
handleSignatureDblClick
){
drawingObjects
.
handleSignatureDblClick
(
drawing
.
signatureLine
.
id
);
drawingObjects
.
handleSignatureDblClick
(
drawing
.
signatureLine
.
id
,
drawing
.
extX
,
drawing
.
extY
);
}
}
else
if
(
2
==
e
.
ClickCount
&&
drawing
.
parent
instanceof
ParaDrawing
&&
drawing
.
parent
.
Is_MathEquation
())
else
if
(
2
==
e
.
ClickCount
&&
drawing
.
parent
instanceof
ParaDrawing
&&
drawing
.
parent
.
Is_MathEquation
())
drawingObjects
.
handleMathDrawingDoubleClick
(
drawing
.
parent
,
e
,
x
,
y
,
pageIndex
);
drawingObjects
.
handleMathDrawingDoubleClick
(
drawing
.
parent
,
e
,
x
,
y
,
pageIndex
);
...
...
word/Editor/GraphicObjects/GraphicObjects.js
View file @
735acb3b
...
@@ -1301,8 +1301,8 @@ CGraphicObjects.prototype =
...
@@ -1301,8 +1301,8 @@ CGraphicObjects.prototype =
this
.
document
.
OnMouseUp
(
e
,
x
,
y
,
pageIndex
);
this
.
document
.
OnMouseUp
(
e
,
x
,
y
,
pageIndex
);
},
},
handleSignatureDblClick
:
function
(
sGuid
){
handleSignatureDblClick
:
function
(
sGuid
,
width
,
height
){
editor
.
sendEvent
(
"
asc_onSignatureClick
"
,
sGuid
);
editor
.
sendEvent
(
"
asc_onSignatureClick
"
,
sGuid
,
width
,
height
);
},
},
...
...
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