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
c5efb288
Commit
c5efb288
authored
Jun 26, 2017
by
GoshaZotov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+ previous revision
parent
8943ff70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cell/view/WorkbookView.js
cell/view/WorkbookView.js
+4
-4
No files found.
cell/view/WorkbookView.js
View file @
c5efb288
...
...
@@ -2985,9 +2985,9 @@
if
(
j
-
1
>=
0
)
{
previousStyle
=
compiledStylesArr
[
i
][
j
-
1
];
if
(
previousStyle
&&
previousStyle
.
border
&&
previousStyle
.
border
.
l
&&
previousStyle
.
border
.
l
.
w
!==
0
)
if
(
previousStyle
&&
previousStyle
.
border
&&
previousStyle
.
border
.
r
&&
previousStyle
.
border
.
r
.
w
!==
0
)
{
color
=
getWinBorderColor
(
curStyle
.
border
.
l
,
previousStyle
.
border
.
l
);
color
=
getWinBorderColor
(
curStyle
.
border
.
l
,
previousStyle
.
border
.
r
);
}
}
calculateLineVer
(
color
,
j
*
lineStepX
,
i
*
stepY
,
(
i
+
1
)
*
stepY
);
...
...
@@ -3005,9 +3005,9 @@
if
(
i
-
1
>=
0
)
{
previousStyle
=
compiledStylesArr
[
i
-
1
][
j
];
if
(
previousStyle
&&
previousStyle
.
border
&&
previousStyle
.
border
.
t
&&
previousStyle
.
border
.
t
.
w
!==
0
)
if
(
previousStyle
&&
previousStyle
.
border
&&
previousStyle
.
border
.
b
&&
previousStyle
.
border
.
b
.
w
!==
0
)
{
color
=
getWinBorderColor
(
curStyle
.
border
.
t
,
previousStyle
.
border
.
t
);
color
=
getWinBorderColor
(
curStyle
.
border
.
t
,
previousStyle
.
border
.
b
);
}
}
calculateLineHor
(
color
,
j
*
stepX
,
i
*
stepY
,
(
j
+
1
)
*
stepX
);
...
...
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