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
39516164
Commit
39516164
authored
Mar 06, 2017
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[mobile] Call asc_OnHideContextMenu on hide settings view
parent
3fa47187
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
0 deletions
+26
-0
apps/documenteditor/mobile/app/controller/edit/EditContainer.js
...ocumenteditor/mobile/app/controller/edit/EditContainer.js
+8
-0
apps/presentationeditor/mobile/app/controller/edit/EditContainer.js
...ntationeditor/mobile/app/controller/edit/EditContainer.js
+9
-0
apps/spreadsheeteditor/mobile/app/controller/edit/EditContainer.js
...adsheeteditor/mobile/app/controller/edit/EditContainer.js
+9
-0
No files found.
apps/documenteditor/mobile/app/controller/edit/EditContainer.js
View file @
39516164
...
...
@@ -263,6 +263,10 @@ define([
'
</div>
'
)).
on
(
'
close
'
,
function
(
e
)
{
mainView
.
showNavbar
();
}).
on
(
'
closed
'
,
function
()
{
if
(
_
.
isFunction
(
me
.
api
.
asc_OnHideContextMenu
))
{
me
.
api
.
asc_OnHideContextMenu
()
}
});
mainView
.
hideNavbar
();
}
else
{
...
...
@@ -292,6 +296,10 @@ define([
}).
on
(
'
close
'
,
function
()
{
$overlay
.
off
(
'
removeClass
'
);
$overlay
.
removeClass
(
'
modal-overlay-visible
'
)
}).
on
(
'
closed
'
,
function
()
{
if
(
_
.
isFunction
(
me
.
api
.
asc_OnHideContextMenu
))
{
me
.
api
.
asc_OnHideContextMenu
()
}
});
}
...
...
apps/presentationeditor/mobile/app/controller/edit/EditContainer.js
View file @
39516164
...
...
@@ -263,7 +263,12 @@ define([
'
</div>
'
)).
on
(
'
close
'
,
function
(
e
)
{
mainView
.
showNavbar
();
}).
on
(
'
closed
'
,
function
()
{
if
(
_
.
isFunction
(
me
.
api
.
asc_OnHideContextMenu
))
{
me
.
api
.
asc_OnHideContextMenu
()
}
});
mainView
.
hideNavbar
();
}
else
{
me
.
picker
=
uiApp
.
popover
(
...
...
@@ -292,6 +297,10 @@ define([
}).
on
(
'
close
'
,
function
()
{
$overlay
.
off
(
'
removeClass
'
);
$overlay
.
removeClass
(
'
modal-overlay-visible
'
)
}).
on
(
'
closed
'
,
function
()
{
if
(
_
.
isFunction
(
me
.
api
.
asc_OnHideContextMenu
))
{
me
.
api
.
asc_OnHideContextMenu
()
}
});
}
...
...
apps/spreadsheeteditor/mobile/app/controller/edit/EditContainer.js
View file @
39516164
...
...
@@ -265,7 +265,12 @@ define([
)).
on
(
'
close
'
,
function
(
e
)
{
mainView
.
showNavbar
();
Common
.
NotificationCenter
.
trigger
(
'
layout:changed
'
,
'
navbar
'
,
{
hidden
:
false
});
}).
on
(
'
closed
'
,
function
()
{
if
(
_
.
isFunction
(
me
.
api
.
asc_OnHideContextMenu
))
{
me
.
api
.
asc_OnHideContextMenu
()
}
});
mainView
.
hideNavbar
();
Common
.
NotificationCenter
.
trigger
(
'
layout:changed
'
,
'
navbar
'
,
{
hidden
:
true
});
}
else
{
...
...
@@ -295,6 +300,10 @@ define([
}).
on
(
'
close
'
,
function
()
{
$overlay
.
off
(
'
removeClass
'
);
$overlay
.
removeClass
(
'
modal-overlay-visible
'
)
}).
on
(
'
closed
'
,
function
()
{
if
(
_
.
isFunction
(
me
.
api
.
asc_OnHideContextMenu
))
{
me
.
api
.
asc_OnHideContextMenu
()
}
});
}
...
...
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