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
1092ea92
Commit
1092ea92
authored
Mar 21, 2017
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[mobile] Fix bug 34394
parent
afec184c
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
apps/documenteditor/mobile/app/controller/DocumentHolder.js
apps/documenteditor/mobile/app/controller/DocumentHolder.js
+1
-1
apps/presentationeditor/mobile/app/controller/DocumentHolder.js
...resentationeditor/mobile/app/controller/DocumentHolder.js
+1
-1
apps/spreadsheeteditor/mobile/app/controller/DocumentHolder.js
...spreadsheeteditor/mobile/app/controller/DocumentHolder.js
+1
-1
apps/spreadsheeteditor/mobile/resources/css/app-ios.css
apps/spreadsheeteditor/mobile/resources/css/app-ios.css
+1
-1
apps/spreadsheeteditor/mobile/resources/css/app-material.css
apps/spreadsheeteditor/mobile/resources/css/app-material.css
+1
-1
No files found.
apps/documenteditor/mobile/app/controller/DocumentHolder.js
View file @
1092ea92
...
...
@@ -161,7 +161,7 @@ define([
},
onApiShowPopMenu
:
function
(
posX
,
posY
)
{
if
(
$
(
'
.popover.settings, .popup.settings, .picker-modal.settings, .modal.modal-in
'
).
length
>
0
)
{
if
(
$
(
'
.popover.settings, .popup.settings, .picker-modal.settings, .modal.modal-in
, .actions-modal
'
).
length
>
0
)
{
return
;
}
...
...
apps/presentationeditor/mobile/app/controller/DocumentHolder.js
View file @
1092ea92
...
...
@@ -163,7 +163,7 @@ define([
},
onApiShowPopMenu
:
function
(
posX
,
posY
)
{
if
(
_isPopMenuHidden
||
$
(
'
.popover.settings, .popup.settings, .picker-modal.settings, .modal-in
'
).
length
>
0
)
if
(
_isPopMenuHidden
||
$
(
'
.popover.settings, .popup.settings, .picker-modal.settings, .modal-in
, .actions-modal
'
).
length
>
0
)
return
;
var
me
=
this
,
...
...
apps/spreadsheeteditor/mobile/app/controller/DocumentHolder.js
View file @
1092ea92
...
...
@@ -182,7 +182,7 @@ define([
onApiShowPopMenu
:
function
(
posX
,
posY
)
{
if
(
!
_isEdit
)
return
;
if
(
$
(
'
.popover.settings, .popup.settings, .picker-modal.settings, .modal-in
'
).
length
>
0
)
{
if
(
$
(
'
.popover.settings, .popup.settings, .picker-modal.settings, .modal-in
, .actions-modal
'
).
length
>
0
)
{
return
;
}
...
...
apps/spreadsheeteditor/mobile/resources/css/app-ios.css
View file @
1092ea92
This diff is collapsed.
Click to expand it.
apps/spreadsheeteditor/mobile/resources/css/app-material.css
View file @
1092ea92
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