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
3fa47187
Commit
3fa47187
authored
Mar 06, 2017
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[mobile] Fix bug 34131
parent
69cc0bda
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
apps/documenteditor/mobile/app/view/edit/EditShape.js
apps/documenteditor/mobile/app/view/edit/EditShape.js
+4
-1
apps/presentationeditor/mobile/app/view/edit/EditShape.js
apps/presentationeditor/mobile/app/view/edit/EditShape.js
+4
-1
apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js
apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js
+4
-1
No files found.
apps/documenteditor/mobile/app/view/edit/EditShape.js
View file @
3fa47187
...
...
@@ -86,10 +86,13 @@ define([
// Render layout
render
:
function
()
{
var
shapes
=
Common
.
SharedSettings
.
get
(
'
shapes
'
).
slice
();
shapes
.
splice
(
0
,
1
);
// Remove line shapes
this
.
layout
=
$
(
'
<div/>
'
).
append
(
this
.
template
({
android
:
Common
.
SharedSettings
.
get
(
'
android
'
),
phone
:
Common
.
SharedSettings
.
get
(
'
phone
'
),
shapes
:
Common
.
SharedSettings
.
get
(
'
shapes
'
)
,
shapes
:
shapes
,
scope
:
this
}));
...
...
apps/presentationeditor/mobile/app/view/edit/EditShape.js
View file @
3fa47187
...
...
@@ -86,10 +86,13 @@ define([
// Render layout
render
:
function
()
{
var
shapes
=
Common
.
SharedSettings
.
get
(
'
shapes
'
).
slice
();
shapes
.
splice
(
0
,
1
);
// Remove line shapes
this
.
layout
=
$
(
'
<div/>
'
).
append
(
this
.
template
({
android
:
Common
.
SharedSettings
.
get
(
'
android
'
),
phone
:
Common
.
SharedSettings
.
get
(
'
phone
'
),
shapes
:
Common
.
SharedSettings
.
get
(
'
shapes
'
)
,
shapes
:
shapes
,
scope
:
this
}));
...
...
apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js
View file @
3fa47187
...
...
@@ -81,11 +81,14 @@ define([
// Render layout
render
:
function
()
{
var
shapes
=
Common
.
SharedSettings
.
get
(
'
shapes
'
).
slice
();
shapes
.
splice
(
0
,
1
);
// Remove line shapes
this
.
layout
=
$
(
'
<div/>
'
).
append
(
this
.
template
({
android
:
Common
.
SharedSettings
.
get
(
'
android
'
),
phone
:
Common
.
SharedSettings
.
get
(
'
phone
'
),
imgpath
:
'
../../common/mobile/resources/img/shapes
'
,
shapes
:
Common
.
SharedSettings
.
get
(
'
shapes
'
)
,
shapes
:
shapes
,
scope
:
this
}));
...
...
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