Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
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
web-apps
Commits
f13b5cd1
Commit
f13b5cd1
authored
Mar 07, 2017
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SE mobile] Fix bug 34149
parent
695adb8e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
apps/spreadsheeteditor/mobile/app/controller/edit/EditCell.js
.../spreadsheeteditor/mobile/app/controller/edit/EditCell.js
+1
-1
No files found.
apps/spreadsheeteditor/mobile/app/controller/edit/EditCell.js
View file @
f13b5cd1
...
...
@@ -265,7 +265,7 @@ define([
initBorderStyle
:
function
()
{
$
(
'
.page[data-page=edit-border-style] a[data-type]
'
).
single
(
'
click
'
,
_
.
bind
(
this
.
onBorderStyle
,
this
));
$
(
'
#edit-border-color .color-preview
'
).
css
(
'
background-color
'
,
'
#
'
+
_borderInfo
.
color
);
$
(
'
#edit-border-color .color-preview
'
).
css
(
'
background-color
'
,
'
#
'
+
(
_
.
isObject
(
_borderInfo
.
color
)
?
_borderInfo
.
color
.
color
:
_borderInfo
.
color
)
);
$
(
'
#edit-border-size select
'
).
val
(
_borderInfo
.
width
);
$
(
'
#edit-border-size .item-after
'
).
text
(
$
(
'
#edit-border-size select option[value=
'
+
_borderInfo
.
width
+
'
]
'
).
text
());
...
...
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