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
587eca5c
Commit
587eca5c
authored
Aug 14, 2017
by
Alexey Golubev
Committed by
GitHub
Aug 14, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #152 from ONLYOFFICE/hotfix/v4.4.3
Hotfix/v4.4.3
parents
7761b5d4
d6d1322e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
201 deletions
+129
-201
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/apiBase.js
common/apiBase.js
+3
-0
No files found.
cell/model/FormulaObjects/lookupandreferenceFunctions.js
View file @
587eca5c
This diff is collapsed.
Click to expand it.
common/Drawings/Format/ChartFormat.js
View file @
587eca5c
...
...
@@ -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/apiBase.js
View file @
587eca5c
...
...
@@ -838,6 +838,9 @@
};
baseEditorsApi
.
prototype
.
asc_onOpenChartFrame
=
function
()
{
if
(
this
.
isMobileVersion
){
return
;
}
this
.
isOpenedChartFrame
=
true
;
};
baseEditorsApi
.
prototype
.
asc_onCloseChartFrame
=
function
()
...
...
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