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
8f858dbf
Commit
8f858dbf
authored
7 years ago
by
konovalovsergey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
font.getUnderline, getVerticalAlign
parent
ac9efbc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cell/model/WorkbookElems.js
cell/model/WorkbookElems.js
+2
-2
No files found.
cell/model/WorkbookElems.js
View file @
8f858dbf
...
...
@@ -671,7 +671,7 @@ var g_oFontProperties = {
return
val
?
this
.
i
=
true
:
this
.
i
=
null
;
};
Font
.
prototype
.
getUnderline
=
function
()
{
return
this
.
u
||
Asc
.
EUnderline
.
underlineNone
;
return
null
!=
this
.
u
?
this
.
u
:
Asc
.
EUnderline
.
underlineNone
;
};
Font
.
prototype
.
setUnderline
=
function
(
val
)
{
return
(
null
!=
val
&&
Asc
.
EUnderline
.
underlineNone
!=
val
)
?
this
.
u
=
val
:
this
.
u
=
null
;
...
...
@@ -689,7 +689,7 @@ var g_oFontProperties = {
return
this
.
c
=
val
;
};
Font
.
prototype
.
getVerticalAlign
=
function
()
{
return
this
.
va
||
AscCommon
.
vertalign_Baseline
;
return
null
!=
this
.
va
?
this
.
va
:
AscCommon
.
vertalign_Baseline
;
};
Font
.
prototype
.
setVerticalAlign
=
function
(
val
)
{
return
(
null
!=
val
&&
AscCommon
.
vertalign_Baseline
!=
val
)
?
this
.
va
=
val
:
this
.
va
=
null
;
...
...
This diff is collapsed.
Click to expand it.
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