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
bad93ce2
Commit
bad93ce2
authored
Jan 10, 2017
by
Sergey Luzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed build's bugs
parent
e61a5527
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
common/Drawings/Format/ChartFormat.js
common/Drawings/Format/ChartFormat.js
+1
-1
common/Drawings/Format/Shape.js
common/Drawings/Format/Shape.js
+2
-1
slide/Editor/Format/Presentation.js
slide/Editor/Format/Presentation.js
+5
-1
No files found.
common/Drawings/Format/ChartFormat.js
View file @
bad93ce2
...
...
@@ -12115,7 +12115,7 @@ CDTable.prototype =
w
.
WriteString2
(
this
.
Get_Id
());
},
Read_FromBinary
:
function
(
r
)
Read_FromBinary
2
:
function
(
r
)
{
this
.
Id
=
r
.
GetString2
();
},
...
...
common/Drawings/Format/Shape.js
View file @
bad93ce2
...
...
@@ -251,7 +251,8 @@ function CopyRunToPPTX(Run, Paragraph, bHyper)
for
(
var
CurPos
=
0
;
CurPos
<
Run
.
Content
.
length
;
CurPos
++
)
{
var
Item
=
Run
.
Content
[
CurPos
];
if
(
para_End
!==
Item
.
Type
&&
Item
.
Type
!==
para_Drawing
&&
Item
.
Type
!==
para_Comment
)
if
(
para_End
!==
Item
.
Type
&&
Item
.
Type
!==
para_Drawing
&&
Item
.
Type
!==
para_Comment
&&
Item
.
Type
!==
para_PageCount
&&
Item
.
Type
!==
para_FootnoteRef
&&
Item
.
Type
!==
para_FootnoteReference
)
{
NewRun
.
Add_ToContent
(
PosToAdd
,
Item
.
Copy
(),
false
);
++
PosToAdd
;
...
...
slide/Editor/Format/Presentation.js
View file @
bad93ce2
...
...
@@ -2226,7 +2226,11 @@ CPresentation.prototype =
{
if
(
isRealObject
(
aSpTree
[
i
].
graphicObject
)
&&
typeof
aSpTree
[
i
].
graphicObject
.
TableStyle
===
"
string
"
&&
isRealObject
(
g_oTableId
.
Get_ById
(
aSpTree
[
i
].
graphicObject
.
TableStyle
)))
{
oMap
[
aSpTree
[
i
].
graphicObject
.
TableStyle
]
=
true
;
var
oStyle
=
AscCommon
.
g_oTableId
.
Get_ById
(
aSpTree
[
i
].
graphicObject
.
TableStyle
);
if
(
oStyle
instanceof
CStyle
)
{
oMap
[
aSpTree
[
i
].
graphicObject
.
TableStyle
]
=
true
;
}
}
}
else
if
(
aSpTree
[
i
].
getObjectType
()
===
AscDFH
.
historyitem_type_GroupShape
)
...
...
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