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
5fcb16b7
Commit
5fcb16b7
authored
Aug 14, 2017
by
Alexey Golubev
Browse files
Options
Browse Files
Download
Plain Diff
v4.4.3
parents
9ec43aeb
d6d1322e
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
145 additions
and
203 deletions
+145
-203
cell/model/FormulaObjects/lookupandreferenceFunctions.js
cell/model/FormulaObjects/lookupandreferenceFunctions.js
+114
-199
common/Drawings/Format/ChartFormat.js
common/Drawings/Format/ChartFormat.js
+12
-2
common/Drawings/Format/Format.js
common/Drawings/Format/Format.js
+9
-0
common/Drawings/States.js
common/Drawings/States.js
+1
-1
common/apiBase.js
common/apiBase.js
+3
-0
slide/Editor/Format/Comments.js
slide/Editor/Format/Comments.js
+6
-1
No files found.
cell/model/FormulaObjects/lookupandreferenceFunctions.js
View file @
5fcb16b7
This diff is collapsed.
Click to expand it.
common/Drawings/Format/ChartFormat.js
View file @
5fcb16b7
...
...
@@ -1626,11 +1626,21 @@ CDLbl.prototype =
Get_Theme
:
function
()
{
return
this
.
chart
.
Get_Theme
();
if
(
this
.
chart
){
return
this
.
chart
.
Get_Theme
();
}
return
null
;
},
Get_ColorMap
:
function
()
{
return
this
.
chart
.
Get_ColorMap
();
if
(
this
.
chart
){
return
this
.
chart
.
Get_ColorMap
();
}
else
{
return
AscFormat
.
G_O_DEFAULT_COLOR_MAP
;
}
},
Get_AbsolutePage
:
function
()
...
...
common/Drawings/Format/Format.js
View file @
5fcb16b7
...
...
@@ -3635,6 +3635,15 @@ CUniFill.prototype =
if
(
unifill
.
fill
!=
null
)
{
this
.
fill
=
unifill
.
fill
.
createDuplicate
();
if
(
this
.
fill
.
type
===
c_oAscFill
.
FILL_TYPE_PATT
){
var
_patt_fill
=
this
.
fill
;
if
(
!
_patt_fill
.
fgClr
){
_patt_fill
.
setFgColor
(
CreateUniColorRGB
(
0
,
0
,
0
));
}
if
(
!
_patt_fill
.
bgClr
){
_patt_fill
.
bgClr
=
CreateUniColorRGB
(
255
,
255
,
255
);
}
}
}
if
(
unifill
.
transparent
!=
null
)
{
...
...
common/Drawings/States.js
View file @
5fcb16b7
...
...
@@ -499,7 +499,7 @@ ChangeAdjState.prototype =
{
if
(
this
.
drawingObjects
.
isViewMode
()
===
false
)
{
var
trackObjects
=
this
.
drawingObjects
.
arrTrackObjects
;
var
trackObjects
=
[].
concat
(
this
.
drawingObjects
.
arrTrackObjects
)
;
var
drawingObjects
=
this
.
drawingObjects
;
this
.
drawingObjects
.
checkSelectedObjectsAndCallback
(
function
()
{
...
...
common/apiBase.js
View file @
5fcb16b7
...
...
@@ -830,6 +830,9 @@
};
baseEditorsApi
.
prototype
.
asc_onOpenChartFrame
=
function
()
{
if
(
this
.
isMobileVersion
){
return
;
}
this
.
isOpenedChartFrame
=
true
;
};
baseEditorsApi
.
prototype
.
asc_onCloseChartFrame
=
function
()
...
...
slide/Editor/Format/Comments.js
View file @
5fcb16b7
...
...
@@ -52,7 +52,12 @@ AscDFH.drawingsConstructorsMap[AscDFH.historyitem_Comment_Change] = CCommentData
AscDFH
.
drawingsChangesMap
[
AscDFH
.
historyitem_Comment_Position
]
=
function
(
oClass
,
value
){
oClass
.
x
=
value
.
a
;
oClass
.
y
=
value
.
b
;};
AscDFH
.
drawingsChangesMap
[
AscDFH
.
historyitem_Comment_Change
]
=
function
(
oClass
,
value
){
oClass
.
Data
=
value
;};
AscDFH
.
drawingsChangesMap
[
AscDFH
.
historyitem_Comment_Change
]
=
function
(
oClass
,
value
){
oClass
.
Data
=
value
;
if
(
value
){
editor
.
sync_ChangeCommentData
(
oClass
.
Id
,
value
);
}
};
AscDFH
.
drawingsChangesMap
[
AscDFH
.
historyitem_Comment_TypeInfo
]
=
function
(
oClass
,
value
){
oClass
.
m_oTypeInfo
=
value
;};
function
ParaComment
(
Start
,
Id
)
...
...
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