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
520aa3ee
Commit
520aa3ee
authored
Jul 26, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Debug function menu in IE.
parent
7cb5aa90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
apps/spreadsheeteditor/main/app/controller/CellEditor.js
apps/spreadsheeteditor/main/app/controller/CellEditor.js
+3
-3
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
+0
-4
No files found.
apps/spreadsheeteditor/main/app/controller/CellEditor.js
View file @
520aa3ee
...
@@ -183,9 +183,9 @@ define([
...
@@ -183,9 +183,9 @@ define([
this
.
api
.
isCEditorFocused
=
undefined
;
this
.
api
.
isCEditorFocused
=
undefined
;
else
if
(
this
.
api
.
isCellEdited
)
else
if
(
this
.
api
.
isCellEdited
)
this
.
api
.
isCEditorFocused
=
true
;
this
.
api
.
isCEditorFocused
=
true
;
if
(
Common
.
Utils
.
isIE
&&
!
$
(
'
#menu-formula-selection
'
).
hasClass
(
'
open
'
))
{
// for formula menu
//
if (Common.Utils.isIE && !$('#menu-formula-selection').hasClass('open')) {// for formula menu
this
.
getApplication
().
getController
(
'
DocumentHolder
'
).
documentHolder
.
focus
();
//
this.getApplication().getController('DocumentHolder').documentHolder.focus();
}
//
}
},
},
onKeyupCellEditor
:
function
(
e
)
{
onKeyupCellEditor
:
function
(
e
)
{
...
...
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
View file @
520aa3ee
...
@@ -1482,10 +1482,6 @@ define([
...
@@ -1482,10 +1482,6 @@ define([
menu
.
render
(
menuContainer
);
menu
.
render
(
menuContainer
);
menu
.
cmpEl
.
attr
({
tabindex
:
"
-1
"
});
menu
.
cmpEl
.
attr
({
tabindex
:
"
-1
"
});
menu
.
on
(
'
hide:after
'
,
function
()
{
if
(
Common
.
Utils
.
isIE
)
me
.
documentHolder
.
focus
();
});
}
}
var
coord
=
me
.
api
.
asc_getActiveCellCoord
(),
var
coord
=
me
.
api
.
asc_getActiveCellCoord
(),
...
...
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