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
679ae631
Commit
679ae631
authored
Jan 31, 2017
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DE mobile] Fixed for deploy version.
parent
a343a7aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
apps/documenteditor/mobile/app/controller/Editor.js
apps/documenteditor/mobile/app/controller/Editor.js
+1
-1
apps/documenteditor/mobile/app/controller/edit/EditTable.js
apps/documenteditor/mobile/app/controller/edit/EditTable.js
+3
-1
apps/presentationeditor/mobile/app/controller/Editor.js
apps/presentationeditor/mobile/app/controller/Editor.js
+1
-1
apps/spreadsheeteditor/mobile/app/controller/Editor.js
apps/spreadsheeteditor/mobile/app/controller/Editor.js
+1
-1
No files found.
apps/documenteditor/mobile/app/controller/Editor.js
View file @
679ae631
...
...
@@ -91,7 +91,7 @@ define([
onLaunch
:
function
()
{
// Device detection
var
phone
=
isPhone
();
console
.
debug
(
'
Layout profile:
'
,
phone
?
'
Phone
'
:
'
Tablet
'
);
//
console.debug('Layout profile:', phone ? 'Phone' : 'Tablet');
Common
.
SharedSettings
.
set
(
'
android
'
,
Framework7
.
prototype
.
device
.
android
);
Common
.
SharedSettings
.
set
(
'
phone
'
,
phone
);
...
...
apps/documenteditor/mobile/app/controller/edit/EditTable.js
View file @
679ae631
...
...
@@ -55,7 +55,7 @@ define([
_metricText
=
Common
.
Utils
.
Metric
.
getCurrentMetricName
(),
_tableObject
=
undefined
,
_tableLook
=
{},
_cellBorders
=
new
Asc
.
CBorders
()
,
_cellBorders
=
undefined
,
_cellBorderColor
=
'
000000
'
,
_cellBorderWidth
=
0.5
;
...
...
@@ -543,6 +543,8 @@ define([
if
(
me
.
api
)
{
var
properties
=
new
Asc
.
CTableProp
();
_cellBorders
=
_
.
isUndefined
(
_cellBorders
)
?
new
Asc
.
CBorders
()
:
_cellBorders
;
properties
.
put_CellBorders
(
_cellBorders
);
properties
.
put_CellSelect
(
true
);
...
...
apps/presentationeditor/mobile/app/controller/Editor.js
View file @
679ae631
...
...
@@ -91,7 +91,7 @@ define([
onLaunch
:
function
()
{
// Device detection
var
phone
=
isPhone
();
console
.
debug
(
'
Layout profile:
'
,
phone
?
'
Phone
'
:
'
Tablet
'
);
//
console.debug('Layout profile:', phone ? 'Phone' : 'Tablet');
Common
.
SharedSettings
.
set
(
'
android
'
,
Framework7
.
prototype
.
device
.
android
);
Common
.
SharedSettings
.
set
(
'
phone
'
,
phone
);
...
...
apps/spreadsheeteditor/mobile/app/controller/Editor.js
View file @
679ae631
...
...
@@ -90,7 +90,7 @@ define([
onLaunch
:
function
()
{
// Device detection
var
phone
=
isPhone
();
console
.
debug
(
'
Layout profile:
'
,
phone
?
'
Phone
'
:
'
Tablet
'
);
//
console.debug('Layout profile:', phone ? 'Phone' : 'Tablet');
Common
.
SharedSettings
.
set
(
'
android
'
,
Framework7
.
prototype
.
device
.
android
);
Common
.
SharedSettings
.
set
(
'
phone
'
,
phone
);
...
...
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